Fix PDF generation reliability by implementing proactive browser management #670
Workflow file for this run
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Coverage Testing | |
on: [workflow_dispatch, push, pull_request] | |
permissions: read-all | |
jobs: | |
Coverage: | |
runs-on: ubuntu-latest | |
strategy: | |
fail-fast: false | |
matrix: | |
node: [ 22, 24 ] | |
env: | |
CODECOV_TOKEN: ${{ secrets.CODECOV_TOKEN }} | |
CYPRESS_RECORD_KEY: ${{ secrets.CYPRESS_RECORD_KEY }} | |
DEEPSOURCE_DSN: ${{ secrets.DEEPSOURCE_DSN }} | |
name: Node ${{ matrix.node }} | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Setup Node | |
uses: actions/setup-node@v4 | |
with: | |
node-version: ${{ matrix.node }} | |
- name: Install Application | |
run: | | |
npm ci --legacy-peer-deps | |
npm install -g c8 cypress@15 --legacy-peer-deps | |
- name: Copy Test Config | |
run: cp ./data/testing.config.js ./data/config.js | |
- name: Test Application Startup | |
run: npm run test:startup | |
- name: Verify Cypress | |
run: cypress verify | |
env: | |
CYPRESS_VERIFY_TIMEOUT: 600000 | |
- name: Run Coverage Testing | |
run: npm run coverage | |
- name: Codecov | |
if: ${{ github.event_name != 'pull_request' && env.CODECOV_TOKEN != '' && matrix.node == 22 }} | |
run: | | |
curl -Os https://uploader.codecov.io/latest/linux/codecov | |
chmod +x codecov | |
./codecov -t ${CODECOV_TOKEN} | |
- name: DeepSource | |
if: ${{ github.event_name != 'pull_request' && env.DEEPSOURCE_DSN != '' && matrix.node == 22 }} | |
run: | | |
# Install deepsource CLI | |
curl https://deepsource.io/cli | sh | |
# From the root directory, run the report coverage command | |
./bin/deepsource report --analyzer test-coverage --key javascript --value-file ./coverage/lcov.info | |
Node20: | |
runs-on: ubuntu-latest | |
strategy: | |
fail-fast: false | |
matrix: | |
node: [ 20 ] | |
env: | |
CYPRESS_RECORD_KEY: ${{ secrets.CYPRESS_RECORD_KEY }} | |
name: Node ${{ matrix.node }} | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Setup Node | |
uses: actions/setup-node@v4 | |
with: | |
node-version: ${{ matrix.node }} | |
- name: Install Application | |
run: | | |
npm ci --legacy-peer-deps | |
npm install -g cross-env c8 cypress@15 --legacy-peer-deps | |
- name: Copy Test Config | |
run: cp ./data/testing.config.js ./data/config.js | |
- name: Test Application Startup | |
run: npm run test:startup | |
- name: Verify Cypress | |
run: cypress verify | |
env: | |
CYPRESS_VERIFY_TIMEOUT: 600000 | |
- name: Run Test | |
run: cross-env NODE_ENV=dev DEBUG=sunrise:* TEST_DATABASES=true node --test --test-concurrency 1 |