Skip to content

Commit

Permalink
Add Node.js setup and build steps
Browse files Browse the repository at this point in the history
  • Loading branch information
nicolasstrands committed Mar 22, 2024
1 parent b4fac10 commit 9a59c20
Showing 1 changed file with 8 additions and 0 deletions.
8 changes: 8 additions & 0 deletions .github/workflows/deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -31,6 +31,14 @@ jobs:
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Setup Node.js
uses: actions/setup-node@v2
with:
node-version: "20"
- name: Build
run: |
npm install
npm run build
- name: Setup Pages
uses: actions/configure-pages@v4
- name: Upload artifact
Expand Down

0 comments on commit 9a59c20

Please sign in to comment.