Skip to content

Commit 2344c47

Browse files
Add support for Node17 (graphql#3386)
1 parent e8c9461 commit 2344c47

File tree

2 files changed

+4
-3
lines changed

2 files changed

+4
-3
lines changed

.github/workflows/ci.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
name: CI
22
on: [push, pull_request]
33
env:
4-
NODE_VERSION_USED_FOR_DEVELOPMENT: 16
4+
NODE_VERSION_USED_FOR_DEVELOPMENT: 17
55
jobs:
66
lint:
77
name: Lint source files
@@ -157,7 +157,7 @@ jobs:
157157
runs-on: ubuntu-latest
158158
strategy:
159159
matrix:
160-
node_version_to_setup: [12, 14, 16]
160+
node_version_to_setup: [12, 14, 16, 17]
161161
steps:
162162
- name: Checkout repo
163163
uses: actions/checkout@v2

integrationTests/node/package.json

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,7 @@
88
"graphql": "file:../graphql.tgz",
99
"node-12": "npm:[email protected]",
1010
"node-14": "npm:[email protected]",
11-
"node-16": "npm:[email protected]"
11+
"node-16": "npm:[email protected]",
12+
"node-17": "npm:[email protected]"
1213
}
1314
}

0 commit comments

Comments
 (0)