Skip to content

chore: bump micromatch from 4.0.5 to 4.0.8 in /website (#15) #8

chore: bump micromatch from 4.0.5 to 4.0.8 in /website (#15)

chore: bump micromatch from 4.0.5 to 4.0.8 in /website (#15) #8

Workflow file for this run

name: 'GitHub Pages'
on:
push:
branches:
- main
paths:
- 'website/**'
workflow_dispatch:
jobs:
deploy:
runs-on: ubuntu-latest
steps:
- name: Actions - Checkout
uses: actions/checkout@v4
- name: Actions - Setup NodeJS
uses: actions/setup-node@v4
with:
node-version: '20.x'
- name: Cache Dependencies
uses: actions/cache@v4
with:
path: ~/.npm
key: npm-${{ hashFiles('package-lock.json') }}
restore-keys: npm-
- name: Installing Dependencies
run: cd website && npm ci
- name: Checking Types
run: cd website && npm run typecheck
- name: Run Unit Tests
run: cd website && npm run test:unit
- name: Building Site
run: cd website && npm run build
- name: Deploy
uses: peaceiris/actions-gh-pages@v4
with:
github_token: ${{ secrets.GITHUB_TOKEN }}
publish_dir: ./website/build