diff --git a/.github/workflows/ci.yaml b/.github/workflows/ci.yaml index 353dac9e..560948df 100644 --- a/.github/workflows/ci.yaml +++ b/.github/workflows/ci.yaml @@ -144,8 +144,16 @@ jobs: - integration_test steps: - uses: actions/checkout@v3 + - uses: browser-actions/setup-chrome@v1 - name: Build run: make build + - name: Report coverage + uses: coactions/setup-xvfb@v1 + env: + COVERALLS_REPO_TOKEN: ${{ secrets.COVERALLS_REPO_TOKEN }} + DISPLAY: :99 + with: + run: make test-unit-cov-ci - uses: google-github-actions/auth@v1 with: credentials_json: ${{ secrets.GCR_QA_PUBLIC_DEVOPS_SA }} diff --git a/karma.ci.conf.js b/karma.ci.conf.js index bca7b19e..9a8b8336 100644 --- a/karma.ci.conf.js +++ b/karma.ci.conf.js @@ -6,7 +6,7 @@ const { } = require('./test/conf/browserstack'); const { - BROWSER = 'chrome', + BROWSER = 'Chrome', REPORT_COVERAGE = false, GITHUB_RUN_ID } = process.env;