Possibility to configure action retries #568
Workflow file for this run
This file contains 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: Tests | |
on: | |
push: | |
pull_request: | |
jobs: | |
tests: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
with: | |
fetch-depth: 0 | |
- name: Setup node | |
uses: actions/setup-node@v4 | |
with: | |
node-version: 21.7 | |
- name: npm install | |
run: npm install | |
- name: test | |
run: npm run test | |
- name: test check should succeed | |
run: | | |
set +e | |
./src/cli.js check example-com > check_report | |
code=$? | |
set -e | |
cat check_report | |
[ $code -eq 1 ] && echo 'Error: Check should succeed' && exit 1 | |
grep 'success: true' check_report | |
- name: test check should fail | |
run: | | |
set +e | |
./src/cli.js check example-com-fail > check_report | |
code=$? | |
set -e | |
cat check_report | |
[ $code -eq 0 ] && echo 'Error: Check should fail' && exit 1 | |
grep 'success: false' check_report | |
grep "Element 'body' does not contain 'No Way'" check_report | |
- name: test check lighthouse | |
run: | | |
set +e | |
PURR_CONFIG_CONCURRENCY=1 \ | |
PURR_CONFIG_TRACES=false \ | |
PURR_CONFIG_CHROMIUM_REMOTE_DEBUGGING=true \ | |
PURR_CONFIG_BROWSER_HEADLESS=false \ | |
./src/cli.js check --no-shorten \ | |
example-com-lighthouse > check_report | |
code=$? | |
set -e | |
cat check_report | |
[ $code -eq 1 ] && echo 'Error: Check should succeed' && exit 1 | |
grep 'success: true' check_report | |
grep "labels: { name: 'first-contentful-paint', id: 'lh-one' }" \ | |
check_report | |
- name: 'lint configs' | |
run: npm run prettier | |
- name: lint | |
run: npm run lint |