Skip to content

Commit

Permalink
add site build workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
Roy Razon committed Dec 7, 2023
1 parent 0b61712 commit 8b0619e
Showing 1 changed file with 23 additions and 0 deletions.
23 changes: 23 additions & 0 deletions .github/workflows/compile-site.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
name: compile-site

on:
workflow_dispatch:
push:
paths:
- 'site/**'

jobs:
compile-site:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- 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

0 comments on commit 8b0619e

Please sign in to comment.