From 2b9dae6b597c28f94cb46001ac04e340c0ca682d Mon Sep 17 00:00:00 2001 From: Ivan Goncharov Date: Fri, 30 Oct 2020 22:19:53 +0200 Subject: [PATCH] CI: test on node 15 --- .github/workflows/ci.yml | 2 +- integrationTests/node/package.json | 3 ++- 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index f1e87e009e..342732d1d5 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -145,7 +145,7 @@ jobs: runs-on: ubuntu-latest strategy: matrix: - node_version_to_setup: [10, 12, 14] + node_version_to_setup: [10, 12, 14, 15] steps: - name: Checkout repo uses: actions/checkout@v2 diff --git a/integrationTests/node/package.json b/integrationTests/node/package.json index 0fcde94963..0b6122b6de 100644 --- a/integrationTests/node/package.json +++ b/integrationTests/node/package.json @@ -7,6 +7,7 @@ "graphql": "file:../graphql.tgz", "node-10": "npm:node@10.x.x", "node-12": "npm:node@12.x.x", - "node-14": "npm:node@14.x.x" + "node-14": "npm:node@14.x.x", + "node-15": "npm:node@15.x.x" } }