Skip to content

Commit

Permalink
Use node 20 and pnpm in CI
Browse files Browse the repository at this point in the history
  • Loading branch information
AndrewLeedham committed May 19, 2024
1 parent 4b5034c commit e6f037d
Show file tree
Hide file tree
Showing 2 changed files with 4,120 additions and 3,240 deletions.
9 changes: 7 additions & 2 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ jobs:

strategy:
matrix:
node-version: [16.x]
node-version: [20.x]

steps:
- uses: actions/checkout@v2
Expand All @@ -21,9 +21,14 @@ jobs:
with:
node-version: ${{ matrix.node-version }}

- name: Install pnpm
uses: pnpm/action-setup@v3
with:
version: 9

- name: Install dependencies & build
run: |
npm ci
pnpm ci
npm run build
- name: Deploy
Expand Down
Loading

0 comments on commit e6f037d

Please sign in to comment.