Skip to content

Commit 9461a1a

Browse files
committed
feat: replace supported node versions
1 parent c9f5eed commit 9461a1a

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

.github/workflows/main.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ jobs:
1919
runs-on: ubuntu-latest
2020
strategy:
2121
matrix:
22-
node: [ 18, 20 ]
22+
node: [ 20, 22 ]
2323
# Steps represent a sequence of tasks that will be executed as part of the job
2424
name: Build for Node ${{ matrix.node }} version
2525
steps:

.github/workflows/pr.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ jobs:
1616
runs-on: ubuntu-latest
1717
strategy:
1818
matrix:
19-
node: [ 18, 20 ]
19+
node: [ 20, 22 ]
2020

2121
name: Build for Node ${{ matrix.node }} version
2222
steps:

.github/workflows/release.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ jobs:
1010
- uses: actions/checkout@v4
1111
- uses: actions/setup-node@v4
1212
with:
13-
node-version: 20
13+
node-version: 22
1414
registry-url: 'https://registry.npmjs.org'
1515
- run: npm install
1616
- run: npm publish

0 commit comments

Comments
 (0)