Skip to content

Commit

Permalink
Add support for Node17 (#3386)
Browse files Browse the repository at this point in the history
  • Loading branch information
IvanGoncharov committed Nov 28, 2021
1 parent e8c9461 commit 2344c47
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 3 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: 16
NODE_VERSION_USED_FOR_DEVELOPMENT: 17
jobs:
lint:
name: Lint source files
Expand Down Expand Up @@ -157,7 +157,7 @@ jobs:
runs-on: ubuntu-latest
strategy:
matrix:
node_version_to_setup: [12, 14, 16]
node_version_to_setup: [12, 14, 16, 17]
steps:
- name: Checkout repo
uses: actions/checkout@v2
Expand Down
3 changes: 2 additions & 1 deletion integrationTests/node/package.json
Expand Up @@ -8,6 +8,7 @@
"graphql": "file:../graphql.tgz",
"node-12": "npm:node@12.x.x",
"node-14": "npm:node@14.x.x",
"node-16": "npm:node@16.x.x"
"node-16": "npm:node@16.x.x",
"node-17": "npm:node@17.x.x"
}
}

0 comments on commit 2344c47

Please sign in to comment.