diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 479a7a9890..0150e6c153 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -47,10 +47,9 @@ jobs: run: npm test -- --coverage - name: Coveralls GitHub Action - uses: coverallsapp/github-action@v1 + uses: coverallsapp/github-action@v2 with: - base-path: ./web - path-to-lcov: ./web/coverage/lcov.info + file: ./web/coverage/lcov.info flag-name: frontend parallel: true @@ -95,7 +94,6 @@ jobs: - name: Coveralls GitHub Action uses: coverallsapp/github-action@v2 with: - base-path: ./service file: ./service/coverage/lcov.info flag-name: backend parallel: true @@ -206,7 +204,7 @@ jobs: run: cargo-binstall --no-confirm cargo-tarpaulin - name: Run the tests - run: cargo tarpaulin --out xml --output-dir coverage + run: cargo tarpaulin --out lcov --output-dir coverage - name: Check the path run: echo "$PATH" @@ -221,7 +219,7 @@ jobs: # file: ./rust/coverage/cobertura.xml # format: cobertura file: ./rust/coverage/lcov.info - format: lcov + # format: lcov flag-name: rust-backend parallel: true debug: true