From 61321fd992f40ec648ba892fb4616f6d46a62880 Mon Sep 17 00:00:00 2001 From: David Mehren Date: Thu, 22 Apr 2021 19:08:43 +0200 Subject: [PATCH] CI: Run tests with Node.js 16 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 f43b793ec..09ae5928d 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 14 + - name: Use Node.js 16 uses: actions/setup-node@v2 with: - node-version: 14 + node-version: 16 - name: Get yarn cache directory path id: yarn-cache-dir-path run: echo "::set-output name=dir::$(yarn cache dir)" @@ -41,7 +41,7 @@ jobs: runs-on: ubuntu-latest strategy: matrix: - node-version: [12.x, 14.x, 15.x ] + node-version: [12.x, 14.x, 15.x, 16.x ] steps: - uses: actions/checkout@v2 - name: Use Node.js ${{ matrix.node-version }} @@ -67,10 +67,10 @@ jobs: - uses: actions/checkout@v2 with: fetch-depth: 0 - - name: Use Node.js 14 + - name: Use Node.js 16 uses: actions/setup-node@v2 with: - node-version: 14 + node-version: 16 - name: Get yarn cache directory path id: yarn-cache-dir-path run: echo "::set-output name=dir::$(yarn cache dir)" @@ -94,10 +94,10 @@ jobs: - uses: actions/checkout@v2 with: fetch-depth: 0 - - name: Use Node.js 14 + - name: Use Node.js 16 uses: actions/setup-node@v2 with: - node-version: 14 + node-version: 16 - name: Get yarn cache directory path id: yarn-cache-dir-path run: echo "::set-output name=dir::$(yarn cache dir)"