Skip to content

Commit

Permalink
chore(action): include Node 14.x
Browse files Browse the repository at this point in the history
  • Loading branch information
lukeed committed May 24, 2021
1 parent c7e0a20 commit cf2de81
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ jobs:
runs-on: ubuntu-latest
strategy:
matrix:
nodejs: [10, 12]
nodejs: [10, 12, 14]
steps:
- uses: actions/checkout@master
with:
Expand All @@ -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)
Expand Down

0 comments on commit cf2de81

Please sign in to comment.