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

Use latest coveralls package and update base path #316

Merged
merged 7 commits into from
Jul 14, 2023
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
11 changes: 6 additions & 5 deletions .github/workflows/build-ci.yml
Original file line number Diff line number Diff line change
@@ -1,10 +1,14 @@
name: build-ci

on:
push:
branches:
- master
pull_request:

jobs:
test:
name: "Build and Test"
runs-on: ubuntu-latest
if: github.event.pull_request.draft == false
steps:
Expand All @@ -13,8 +17,6 @@ jobs:
with:
node-version-file: '.nvmrc'
- uses: bahmutov/npm-install@v1.6.0
with:
useRollingCache: true
- uses: actions-rs/toolchain@v1
with:
toolchain: nightly
Expand All @@ -28,8 +30,7 @@ jobs:
- run: npm run build
- run: npm run test-cov
- name: Publish to coveralls.io
uses: coverallsapp/github-action@v1.1.2
uses: coverallsapp/github-action@v2.2.1
with:
github-token: ${{ github.token }}
path-to-lcov: ./packages/diffhtml/coverage/lcov.info
base-path: ./packages/diffhtml
files: ./packages/diffhtml/coverage/lcov.info ./packages/diffhtml-components/coverage/lcov.info
Loading