From 1a35772046f6bba0b960dd246df6e37eba0d7f15 Mon Sep 17 00:00:00 2001 From: Rauno Viskus Date: Tue, 1 Jun 2021 23:09:48 +0300 Subject: [PATCH] chore: add node:16 to the test matrix (#85) --- .github/workflows/test.yaml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/test.yaml b/.github/workflows/test.yaml index 5c0f08f1..d261f2a7 100644 --- a/.github/workflows/test.yaml +++ b/.github/workflows/test.yaml @@ -10,7 +10,7 @@ jobs: strategy: fail-fast: false matrix: - container: ["node:8", "node:10", "node:12", "node:14"] + container: ["node:8", "node:10", "node:12", "node:14", "node:16"] runs-on: ubuntu-latest container: image: ${{ matrix.container }} @@ -29,7 +29,7 @@ jobs: - name: Report Coverage run: npm run codecov - if: ${{ matrix.container }} == 'node:12' + if: ${{ matrix.container }} == 'node:14' browser-tests: runs-on: ubuntu-latest