From 19c061de4ead62a758256f34d1de904685e9af13 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) --- api/.github/workflows/test.yaml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/api/.github/workflows/test.yaml b/api/.github/workflows/test.yaml index 5c0f08f121..d261f2a7e0 100644 --- a/api/.github/workflows/test.yaml +++ b/api/.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