Skip to content

Commit

Permalink
Merge c2381c4 into 3ed24ca
Browse files Browse the repository at this point in the history
  • Loading branch information
bkendall committed Jan 8, 2021
2 parents 3ed24ca + c2381c4 commit 78bbef0
Show file tree
Hide file tree
Showing 4 changed files with 76 additions and 15 deletions.
18 changes: 18 additions & 0 deletions .github/workflows/node-test.yml
Expand Up @@ -53,6 +53,24 @@ jobs:
- run: npm ci
- run: npm test

- name: Coveralls (in parallel)
uses: coverallsapp/github-action@master
with:
github-token: ${{ secrets.github_token }}
flag-name: run-${{ matrix.node-version }}
path-to-lcov: "./.coverage/lcov.info"
parallel: true

finish-coverage:
needs: unit
runs-on: ubuntu-latest
steps:
- name: Coveralls finalization
uses: coverallsapp/github-action@master
with:
github-token: ${{ secrets.github_token }}
parallel-finished: true

integration:
needs: unit
if: github.event_name == 'push'
Expand Down
1 change: 1 addition & 0 deletions .gitignore
@@ -1,6 +1,7 @@
/.vscode
node_modules
/coverage
/.coverage
/.nyc_output
firebase-debug.log
firebase-debug.*.log
Expand Down
65 changes: 51 additions & 14 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

7 changes: 6 additions & 1 deletion package.json
Expand Up @@ -65,6 +65,11 @@
"require": [
"ts-node/register"
],
"reporter": [
"lcovonly",
"text"
],
"report-dir": "./.coverage",
"extension": [
".js",
".ts"
Expand Down Expand Up @@ -173,7 +178,7 @@
"@typescript-eslint/parser": "^2.34.0",
"chai": "^4.2.0",
"chai-as-promised": "^7.1.1",
"coveralls": "^3.0.1",
"coveralls": "^3.1.0",
"eslint": "^6.8.0",
"eslint-config-google": "^0.14.0",
"eslint-config-prettier": "^6.10.0",
Expand Down

0 comments on commit 78bbef0

Please sign in to comment.