Skip to content

Commit c0acad8

Browse files
chore!: test on node 24 (new lts), drop node 18 (#568)
1 parent 0eb0f3c commit c0acad8

File tree

4 files changed

+7
-7
lines changed

4 files changed

+7
-7
lines changed

.github/workflows/check.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ jobs:
99
- run: corepack enable
1010
- uses: actions/setup-node@v5
1111
with:
12-
node-version: 22
12+
node-version: 24
1313
cache: "yarn"
1414
- name: run eslint
1515
run: |

.github/workflows/publish.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ jobs:
3535
- run: corepack enable
3636
- uses: actions/setup-node@v5
3737
with:
38-
node-version: 22
38+
node-version: 24
3939
registry-url: "https://registry.npmjs.org"
4040
cache: "yarn"
4141
- run: yarn install --immutable

.github/workflows/sync.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ jobs:
1616
- run: corepack enable
1717
- uses: actions/setup-node@v5
1818
with:
19-
node-version: 22
19+
node-version: 24
2020
cache: "yarn"
2121
- run: yarn install --immutable
2222
- run: yarn sync

.github/workflows/test.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -9,15 +9,15 @@ jobs:
99
- run: corepack enable
1010
- uses: actions/setup-node@v5
1111
with:
12-
node-version: 22
12+
node-version: 24
1313
cache: "yarn"
1414
- name: Install deps and build
1515
run: |
1616
yarn install --immutable
1717
yarn build
1818
rm -rf node_modules
1919
20-
- name: test built package on node@22
20+
- name: test built package on node@24
2121
working-directory: ./package-test/
2222
run: |
2323
# CI implies --immutable
@@ -32,8 +32,8 @@ jobs:
3232

3333
- uses: actions/setup-node@v5
3434
with:
35-
node-version: 20
36-
- name: test build package on node@20
35+
node-version: 22
36+
- name: test build package on node@22
3737
working-directory: ./package-test/
3838
run: |
3939
node -v

0 commit comments

Comments
 (0)