Skip to content

Commit

Permalink
ci: run CI against node 18, 20, and 22
Browse files Browse the repository at this point in the history
  • Loading branch information
Westbrook committed May 25, 2024
1 parent f311cfd commit f9903cd
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,10 +18,10 @@ jobs:
# This makes Actions fetch all Git history so that Changesets can generate changelogs with the correct commits
fetch-depth: 0

- name: Setup Node.js 14.x
- name: Setup Node.js 22.x
uses: actions/setup-node@master
with:
node-version: 14.x
node-version: 22.x
registry-url: 'https://registry.npmjs.org'

- name: Get yarn cache directory path
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/verify-node.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ jobs:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [14.x, 16.x]
node-version: [18.x, 20.x, 22.x]
steps:
- uses: actions/checkout@v2

Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/verify-windows.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,10 +18,10 @@ jobs:
- uses: actions/checkout@v2

- name: Setup Node 14.x
- name: Setup Node 22.x
uses: actions/setup-node@v2
with:
node-version: 14.x
node-version: 22.x
cache: 'yarn'

- name: Install dependencies
Expand Down

0 comments on commit f9903cd

Please sign in to comment.