From bc4f827301623ce33f603d2ec6cb03f9c5bc138b Mon Sep 17 00:00:00 2001 From: Luke Edwards Date: Sat, 2 Jul 2022 11:09:41 -0700 Subject: [PATCH] chore: update CI matrix --- .github/workflows/ci.yml | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 587c81e..abf8bf4 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -8,10 +8,10 @@ jobs: runs-on: ubuntu-latest strategy: matrix: - nodejs: [6, 8, 10, 12] + nodejs: [6, 8, 10, 12, 14, 16] steps: - - uses: actions/checkout@v1 - - uses: actions/setup-node@v1 + - uses: actions/checkout@v2 + - uses: actions/setup-node@v2 with: node-version: ${{ matrix.nodejs }} @@ -25,19 +25,19 @@ jobs: run: npm install - name: (coverage) Install - if: matrix.nodejs >= 12 + if: matrix.nodejs >= 16 run: npm install -g nyc - name: Test run: npm test - if: matrix.nodejs < 12 + if: matrix.nodejs < 16 - name: (coverage) Test run: nyc --include=src npm test - if: matrix.nodejs >= 12 + if: matrix.nodejs >= 16 - name: (coverage) Report - if: matrix.nodejs >= 12 + if: matrix.nodejs >= 16 run: | nyc report --reporter=text-lcov > coverage.lcov bash <(curl -s https://codecov.io/bash)