From be3a4e2c88d30935d1ba62f596128cfe2e3f6cb2 Mon Sep 17 00:00:00 2001 From: David Mehren Date: Thu, 11 Nov 2021 19:39:22 +0100 Subject: [PATCH] CI: Test and build with Node 17 Signed-off-by: David Mehren --- .github/workflows/nest.js.yml | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/.github/workflows/nest.js.yml b/.github/workflows/nest.js.yml index fb7c7a339..b69cd76d8 100644 --- a/.github/workflows/nest.js.yml +++ b/.github/workflows/nest.js.yml @@ -21,10 +21,10 @@ jobs: - yarn run format steps: - uses: actions/checkout@v2 - - name: Use Node.js 16 + - name: Use Node.js 17 uses: actions/setup-node@v2 with: - node-version: 16 + node-version: 17 cache: 'yarn' - run: yarn install --immutable - run: ${{matrix.command}} @@ -32,7 +32,7 @@ jobs: runs-on: ubuntu-latest strategy: matrix: - node-version: [12.x, 14.x, 16.x ] + node-version: [12.x, 14.x, 16.x, 17.x ] steps: - uses: actions/checkout@v2 - name: Use Node.js ${{ matrix.node-version }} @@ -49,10 +49,10 @@ jobs: - uses: actions/checkout@v2 with: fetch-depth: 0 - - name: Use Node.js 16 + - name: Use Node.js 17 uses: actions/setup-node@v2 with: - node-version: 16 + node-version: 17 cache: 'yarn' - run: yarn install --immutable - run: yarn run test:cov @@ -67,10 +67,10 @@ jobs: - uses: actions/checkout@v2 with: fetch-depth: 0 - - name: Use Node.js 16 + - name: Use Node.js 17 uses: actions/setup-node@v2 with: - node-version: 16 + node-version: 17 cache: 'yarn' - run: yarn install --immutable - run: yarn run test:e2e:cov