Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

test coverall parallels to ensure #109 is no reoccurring #113

Merged
merged 1 commit into from Nov 11, 2021
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
17 changes: 16 additions & 1 deletion .github/workflows/build-test.yml
Expand Up @@ -35,9 +35,13 @@ jobs:
name: build and test
shell: bash
- name: Coveralls
uses: coverallsapp/github-action@master
uses: coverallsapp/github-action@1.1.3
with:
github-token: ${{ secrets.GITHUB_TOKEN }}
parallel: true
flag-name: ${{ matrix.os }}-build_and_unit_test
env:
NODE_COVERALLS_DEBUG: 1

tests:
needs: build_and_unit_test
Expand Down Expand Up @@ -90,3 +94,14 @@ jobs:
vcpkgGitCommitId: 'd417ae59d6e9aa20d9f812b5deb966645c54687d'
appendedCacheKey: ${{ env.GITHUB_RUN_ID }}

finalize_coveralls:
needs: build_and_unit_test
runs-on: ubuntu-latest
steps:
- name: Finalize Coveralls
uses: coverallsapp/github-action@1.1.3
with:
github-token: ${{ secrets.GITHUB_TOKEN }}
parallel-finished: true
env:
NODE_COVERALLS_DEBUG: 1