Skip to content

Commit

Permalink
chore: add support for nodejs 19 (#700)
Browse files Browse the repository at this point in the history
  • Loading branch information
kunal15595 authored Nov 28, 2022
1 parent 26c3ce7 commit a412595
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/nodejs-ci-action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ jobs:

strategy:
matrix:
node-version: [14.x, 16.x]
node-version: [14.x, 16.x, 18.x]

steps:
- uses: actions/checkout@v2
Expand All @@ -37,10 +37,10 @@ jobs:

steps:
- uses: actions/checkout@v2
- name: Use Node.js 18.x
- name: Use Node.js 19.x
uses: actions/setup-node@v2
with:
node-version: 18.x
node-version: 19.x
- run: npm ci
- run: npm run build
- run: npm run test:headless
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -70,7 +70,7 @@
"rate-limiting"
],
"engines": {
"node": "^18 || ^16 || ^14"
"node": "^19 || ^18 || ^16 || ^14"
},
"support": true
}

0 comments on commit a412595

Please sign in to comment.