From cf2de816593217362214312c34bf0def624c0176 Mon Sep 17 00:00:00 2001 From: Luke Edwards Date: Mon, 24 May 2021 15:36:31 -0700 Subject: [PATCH] chore(action): include Node 14.x --- .github/workflows/ci.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 71fb143..d9932d7 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -8,7 +8,7 @@ jobs: runs-on: ubuntu-latest strategy: matrix: - nodejs: [10, 12] + nodejs: [10, 12, 14] steps: - uses: actions/checkout@master with: @@ -33,7 +33,7 @@ jobs: run: nyc --include=packages pnpm test - name: Report - if: matrix.nodejs >= 12 + if: matrix.nodejs >= 14 run: | nyc report --reporter=text-lcov > coverage.lcov bash <(curl -s https://codecov.io/bash)