Skip to content

Commit

Permalink
update action
Browse files Browse the repository at this point in the history
  • Loading branch information
tonyketcham committed Jan 17, 2024
1 parent da0eb58 commit 632cca4
Showing 1 changed file with 18 additions and 12 deletions.
30 changes: 18 additions & 12 deletions .github/workflows/pipeline.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,21 +11,24 @@ jobs:

strategy:
matrix:
node-version: [16.x]
os: [ubuntu-latest]
node-version: [20.x]
os:
- ubuntu-latest
- macos-latest
- windows-latest
fail-fast: false

steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4

- name: Install pnpm
uses: pnpm/action-setup@v2.2.2
uses: pnpm/action-setup@v2.4.0
with:
version: ^7.5.0
version: 8
run_install: false

- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v3
uses: actions/setup-node@v4
with:
node-version: ${{ matrix.node-version }}
registry-url: https://registry.npmjs.org/
Expand All @@ -41,21 +44,24 @@ jobs:

strategy:
matrix:
node-version: [16.x]
os: [ubuntu-latest]
node-version: [20.x]
os:
- ubuntu-latest
- macos-latest
- windows-latest
fail-fast: false

steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4

- name: Install pnpm
uses: pnpm/action-setup@v2.2.2
uses: pnpm/action-setup@v2.4.0
with:
version: ^7.5.0
version: 8
run_install: false

- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v3
uses: actions/setup-node@v4
with:
node-version: ${{ matrix.node-version }}
registry-url: https://registry.npmjs.org/
Expand Down

0 comments on commit 632cca4

Please sign in to comment.