Skip to content

Commit e63ecfe

Browse files
committed
ci: run CI against node 18, 20, and 22
1 parent f311cfd commit e63ecfe

File tree

3 files changed

+11
-11
lines changed

3 files changed

+11
-11
lines changed

.github/workflows/release.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -13,15 +13,15 @@ jobs:
1313
runs-on: ubuntu-latest
1414
steps:
1515
- name: Checkout Repo
16-
uses: actions/checkout@master
16+
uses: actions/checkout@v4
1717
with:
1818
# This makes Actions fetch all Git history so that Changesets can generate changelogs with the correct commits
1919
fetch-depth: 0
2020

21-
- name: Setup Node.js 14.x
22-
uses: actions/setup-node@master
21+
- name: Setup Node.js 22.x
22+
uses: actions/setup-node@v4
2323
with:
24-
node-version: 14.x
24+
node-version: 22.x
2525
registry-url: 'https://registry.npmjs.org'
2626

2727
- name: Get yarn cache directory path

.github/workflows/verify-node.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -12,12 +12,12 @@ jobs:
1212
runs-on: ubuntu-latest
1313
strategy:
1414
matrix:
15-
node-version: [14.x, 16.x]
15+
node-version: [18.x, 20.x, 22.x]
1616
steps:
17-
- uses: actions/checkout@v2
17+
- uses: actions/checkout@v4
1818

1919
- name: Setup Node ${{ matrix.node-version }}
20-
uses: actions/setup-node@v2
20+
uses: actions/setup-node@v4
2121
with:
2222
node-version: ${{ matrix.node-version }}
2323
cache: 'yarn'

.github/workflows/verify-windows.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -16,12 +16,12 @@ jobs:
1616
git config --global core.autocrlf false
1717
git config --global core.eol lf
1818
19-
- uses: actions/checkout@v2
19+
- uses: actions/checkout@v4
2020

21-
- name: Setup Node 14.x
22-
uses: actions/setup-node@v2
21+
- name: Setup Node 22.x
22+
uses: actions/setup-node@v4
2323
with:
24-
node-version: 14.x
24+
node-version: 22.x
2525
cache: 'yarn'
2626

2727
- name: Install dependencies

0 commit comments

Comments
 (0)