diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index eeef751331..63c83055f4 100644 --- a/.github/workflows/ci.yml +++ b/.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 @@ -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 diff --git a/integrationTests/node/package.json b/integrationTests/node/package.json index c5f85cd833..87f399e73f 100644 --- a/integrationTests/node/package.json +++ b/integrationTests/node/package.json @@ -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" } }