Skip to content

Commit

Permalink
Getting github actions working with pnpm build
Browse files Browse the repository at this point in the history
  • Loading branch information
wscullen committed Mar 12, 2024
1 parent ea083ca commit 627b92a
Showing 1 changed file with 5 additions and 2 deletions.
7 changes: 5 additions & 2 deletions .github/workflows/static.yml
Original file line number Diff line number Diff line change
Expand Up @@ -33,12 +33,15 @@ jobs:
uses: actions/checkout@v4
- name: Setup Pages
uses: actions/configure-pages@v4
- uses: pnpm/action-setup@v3
with:
version: 8
- name: Use Node.js
uses: actions/setup-node@v4
with:
node-version: '21.x'
- run: npm ci
- run: npm run build --if-present
- run: pnpm install
- run: pnpm run build
- name: Upload artifact
uses: actions/upload-pages-artifact@v3
with:
Expand Down

0 comments on commit 627b92a

Please sign in to comment.