Skip to content

Commit

Permalink
- add pnpm
Browse files Browse the repository at this point in the history
  • Loading branch information
andrecrjr committed Apr 19, 2024
1 parent 309a17c commit a554997
Showing 1 changed file with 8 additions and 5 deletions.
13 changes: 8 additions & 5 deletions .github/workflows/deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,18 +15,21 @@ jobs:

strategy:
matrix:
node-version: [18.x]
node-version: [20.x]
# See supported Node.js release schedule at https://nodejs.org/en/about/releases/

steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v4
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v2
uses: actions/setup-node@v4
with:
node-version: ${{ matrix.node-version }}
cache: 'npm'
- run: npm install
- run: npm run build-export
- uses: pnpm/action-setup@v3
with:
version: '8'
- run: pnpm install
- run: pnpm run build-export
- run: touch ./out/.nojekyll
- name: Deploy 🚀
uses: JamesIves/[email protected]
Expand Down

0 comments on commit a554997

Please sign in to comment.