From 51c28b2fdff8322e10c939a8185d007a597eab58 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Micha=C3=ABl=20De=20Boey?= Date: Wed, 21 Apr 2021 17:12:10 +0200 Subject: [PATCH] chore: add tests for Node 16 --- .github/workflows/nodejs.yml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/nodejs.yml b/.github/workflows/nodejs.yml index 10d7c9b..1352e8b 100644 --- a/.github/workflows/nodejs.yml +++ b/.github/workflows/nodejs.yml @@ -15,17 +15,17 @@ jobs: strategy: matrix: - node-version: [12.x, 14.x] + node-version: [12, 14, 16] steps: - - uses: actions/checkout@v2.3.3 + - uses: actions/checkout@v2 - name: Use Node.js ${{ matrix.node-version }} - uses: actions/setup-node@v1.4.4 + uses: actions/setup-node@v2 with: node-version: ${{ matrix.node-version }} - name: Use cached node_modules id: cache - uses: actions/cache@v2.1.1 + uses: actions/cache@v2 with: path: node_modules key: nodeModules-${{ hashFiles('**/package-lock.json') }}-${{ matrix.node-version }}