From ac6da5d1a3cca948ff338a18128e1eec3288cdba Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Micha=C3=ABl=20De=20Boey?= Date: Wed, 21 Apr 2021 16:28:34 +0200 Subject: [PATCH] chore: add tests for Node 16 --- .github/workflows/release.yml | 16 ++++++---------- 1 file changed, 6 insertions(+), 10 deletions(-) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 1cabbcf..0771a71 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -13,18 +13,16 @@ jobs: strategy: matrix: - node: [10.x, 12.x] + node: [10, 12, 14, 16] steps: - name: Cancel previous runs - uses: styfle/cancel-workflow-action@0.6.0 - with: - access_token: ${{ secrets.GITHUB_TOKEN }} + uses: styfle/cancel-workflow-action@0.9.0 - uses: actions/checkout@v2 - name: Setup nodejs - uses: actions/setup-node@v2-beta + uses: actions/setup-node@v2 with: node-version: ${{ matrix.node }} - name: Install deps & validate @@ -35,16 +33,14 @@ jobs: steps: - name: Cancel previous runs - uses: styfle/cancel-workflow-action@0.6.0 - with: - access_token: ${{ secrets.GITHUB_TOKEN }} + uses: styfle/cancel-workflow-action@0.9.0 - uses: actions/checkout@v2 - name: Setup nodejs - uses: actions/setup-node@v2-beta + uses: actions/setup-node@v2 with: - node-version: 12.x + node-version: 14 - name: Install deps run: npm install - name: Build proj