Skip to content

Commit 0a8b8de

Browse files
authored
chore: add node 22 to the list of supported versions (#376)
* chore: add node 22 to the list of supported versions and ci
1 parent 473a23f commit 0a8b8de

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

.github/workflows/ci.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ jobs:
1010
build:
1111
strategy:
1212
matrix:
13-
node-version: [16.x, 18.x, 20.x]
13+
node-version: [16.x, 18.x, 20.x, 22.x]
1414
os: [ubuntu-latest, windows-latest]
1515
runs-on: ${{ matrix.os }}
1616
steps:

.github/workflows/release.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,6 @@ jobs:
1616
registry-url: 'https://registry.npmjs.org'
1717
- run: npm install -g npm
1818
- run: npm ci
19-
- run: npm publish --provenance --access public
19+
- run: npm publish
2020
env:
2121
NODE_AUTH_TOKEN: ${{ secrets.FAAS_JS_RUNTIME_PUBLISH }}

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
"author": "Red Hat, Inc.",
99
"license": "Apache-2.0",
1010
"engines": {
11-
"node": "^20 || ^18 || ^16"
11+
"node": "^22 || ^20 || ^18 || ^16"
1212
},
1313
"type": "commonjs",
1414
"scripts": {

0 commit comments

Comments
 (0)