Run coverage via Github Action

Note: I tried directly invoking `codecov`, but it "couldn't tell" that
it was running in a GA/CI container, so I've opted for using the GA
codecov integration, which does work as expected.
This commit is contained in:
stvn
2020-12-08 09:13:20 -08:00
parent cc0af77e2f
commit 64ff72faa9
2 changed files with 4 additions and 1 deletions

View File

@@ -15,3 +15,7 @@ jobs:
with:
node-version: ${{ matrix.node-version }}
- run: make validate.ci
- name: Upload coverage
uses: codecov/codecov-action@v1
with:
fail_ci_if_error: true

View File

@@ -66,4 +66,3 @@ validate:
validate.ci:
npm ci
make validate
codecov