Skip to content

Commit b3abef3

Browse files
committed
chore: bumped node versions
1 parent e9f4034 commit b3abef3

File tree

3 files changed

+7
-7
lines changed

3 files changed

+7
-7
lines changed

.github/workflows/ci.yaml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ on: push
33

44
jobs:
55
test:
6-
runs-on: ubuntu-22.04
6+
runs-on: ubuntu-24.04
77

88
services:
99
rethinkdb:
@@ -13,7 +13,7 @@ jobs:
1313

1414
strategy:
1515
matrix:
16-
node-version: [ 18.x, 20.x, 22.x ]
16+
node-version: [18.x, 20.x, 22.x]
1717

1818
steps:
1919
- uses: actions/checkout@v4
@@ -31,16 +31,16 @@ jobs:
3131
- run: npm run build --if-present
3232
- run: npm test
3333
publish:
34-
runs-on: ubuntu-22.04
34+
runs-on: ubuntu-24.04
3535
needs: test
3636
if: startsWith(github.ref, 'refs/tags/v')
3737
steps:
3838
- uses: actions/checkout@v4
3939
- name: Use Node.js
4040
uses: actions/setup-node@v4
4141
with:
42-
node-version: 20
43-
registry-url: 'https://registry.npmjs.org'
42+
node-version: 22
43+
registry-url: "https://registry.npmjs.org"
4444
- run: npm ci
4545
- run: npm run build --if-present
4646
- run: npm publish

package-lock.json

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@
1616
"test": "test"
1717
},
1818
"engines": {
19-
"node": ">=16.x <=20.x"
19+
"node": ">=18.x <=22.x"
2020
},
2121
"scripts": {
2222
"prepare": "husky install && tsc",

0 commit comments

Comments
 (0)