Skip to content

Commit

Permalink
Updated the github build actions for pnpm
Browse files Browse the repository at this point in the history
  • Loading branch information
chmking committed Sep 19, 2024
1 parent e18ccc6 commit 44aa529
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ jobs:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [14.x, 16.x]
node-version: [16.x, 18.x, 20.x]
steps:
- name: Checkout
uses: actions/checkout@v3
Expand All @@ -18,7 +18,7 @@ jobs:
node-version: ${{ matrix.node-version }}

- name: Install pnpm
uses: pnpm/action-setup@v2.2.4
uses: pnpm/action-setup@v4.0.0
with:
version: 7
run_install: |
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,14 +12,14 @@ jobs:
- name: Checkout
uses: actions/checkout@v3

- name: Use Node.js 14.x
- name: Use Node.js 16.x
uses: actions/setup-node@v3
with:
node-version: '14.x'
node-version: '16.x'
registry-url: 'https://registry.npmjs.org'

- name: Install pnpm
uses: pnpm/action-setup@v2.2.2
uses: pnpm/action-setup@4.0.0
with:
version: 7
run_install: |
Expand Down

0 comments on commit 44aa529

Please sign in to comment.