Skip to content

Commit

Permalink
Add npm install step
Browse files Browse the repository at this point in the history
  • Loading branch information
mjoerussell committed Jan 19, 2024
1 parent 8edfc08 commit 90ff024
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion .github/workflows/build-deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,9 @@ jobs:
- uses: actions/setup-node@v4
- id: build-web
working-directory: web
run: npm run build
run: |
npm install
npm run build
- id: build-night-math
working-directory: night-math
run: zig build -Doptimize=ReleaseFast
Expand Down

0 comments on commit 90ff024

Please sign in to comment.