From df5f61ea8be9024f040642ce04cd367295e211df Mon Sep 17 00:00:00 2001 From: Ricardo Arturo Cabral Mejia Date: Fri, 28 Oct 2022 22:18:07 -0400 Subject: [PATCH] chore(ci): annotate & coveralls on failure --- .github/workflows/checks.yml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/.github/workflows/checks.yml b/.github/workflows/checks.yml index 8b9b4e4..fd14115 100644 --- a/.github/workflows/checks.yml +++ b/.github/workflows/checks.yml @@ -71,13 +71,16 @@ jobs: - name: Run integration tests run: npm run docker:test:integration - uses: deblockt/cucumber-report-annotations-action@v1.7 + if: ${{ always() }} with: access-token: ${{ secrets.GITHUB_TOKEN }} path: .test-reports/integration/report.json - name: Run coverage for integration tests run: npm run docker:cover:integration + if: ${{ always() }} - name: Coveralls uses: coverallsapp/github-action@master + if: ${{ always() }} with: path-to-lcov: .coverage/integration/lcov.info flag-name: Integration