Skip to content

Commit

Permalink
Test with Node v16
Browse files Browse the repository at this point in the history
  • Loading branch information
IvanGoncharov committed May 4, 2021
1 parent 777c7e9 commit 71f33b6
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 4 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/ci.yml
@@ -1,7 +1,7 @@
name: CI
on: [push, pull_request]
env:
NODE_VERSION_USED_FOR_DEVELOPMENT: 14
NODE_VERSION_USED_FOR_DEVELOPMENT: 16
jobs:
lint:
name: Lint source files
Expand Down Expand Up @@ -139,7 +139,7 @@ jobs:
runs-on: ubuntu-latest
strategy:
matrix:
node_version_to_setup: [12, 14, 15]
node_version_to_setup: [12, 14, 15, 16]
steps:
- name: Checkout repo
uses: actions/checkout@v2
Expand Down
3 changes: 2 additions & 1 deletion integrationTests/node/package.json
Expand Up @@ -7,6 +7,7 @@
"graphql": "file:../graphql.tgz",
"node-12": "npm:node@12.x.x",
"node-14": "npm:node@14.x.x",
"node-15": "npm:node@15.x.x"
"node-15": "npm:node@15.x.x",
"node-16": "npm:node@16.x.x"
}
}
2 changes: 1 addition & 1 deletion package.json
Expand Up @@ -21,7 +21,7 @@
"graphql-js"
],
"engines": {
"node": "^12.20.0 || ^14.15.0 || >= 15.9.0"
"node": "^12.20.0 || ^14.15.0 || ^15.9.0 || >=16.0.0"
},
"scripts": {
"preversion": ". ./resources/checkgit.sh && npm ci",
Expand Down

0 comments on commit 71f33b6

Please sign in to comment.