Skip to content

Bump minimist from 1.2.5 to 1.2.8 #57

Bump minimist from 1.2.5 to 1.2.8

Bump minimist from 1.2.5 to 1.2.8 #57

Workflow file for this run

name: Test, Build & Deploy
on:
push:
branches:
- main
pull_request:
branches:
- main
jobs:
test-build-deploy:
runs-on: ubuntu-latest
steps:
- name: Checkout 🛎️
uses: actions/checkout@v2
- name: Restore Cache ♻
uses: actions/cache@v2
with:
path: ~/.pnpm-store
key: ${{ runner.os }}-${{ hashFiles('**/pnpm-lock.yaml') }}
restore-keys: |
${{ runner.os }}-
- name: Setup 🔧
uses: pnpm/action-setup@v2.0.1
with:
version: 6.16.0
run_install: true
- name: Check 🔎
run: pnpm run check
- name: Test ✅
run: pnpm run test
- name: Build 🏗
if: ${{ github.event_name == 'push' }}
run: pnpm run build
- name: CNAME 🧾
if: ${{ github.event_name == 'push' }}
run: echo zacktype.skayo.dev > dist/CNAME
- name: Deploy 🚀
if: ${{ github.event_name == 'push' }}
uses: JamesIves/github-pages-deploy-action@4.1.5
with:
branch: gh-pages
folder: dist
git-config-name: skayobot
git-config-email: bot@skayo.dev
clean: true