Skip to content

update checkout action version #1

update checkout action version

update checkout action version #1

Workflow file for this run

name: compile-site
on:
workflow_dispatch:
push:
paths:
- 'site/**'
jobs:
compile-site:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v3
with:
node-version: '18.x'
cache: yarn
- run: yarn
working-directory: site
- run: yarn typecheck
working-directory: site
- run: yarn build
working-directory: site