Fix log spam during cypress CI (#11272)

Tell the web server not to log requests, to reduce the amount of noise in the
CI logs.
pull/28788/head^2
Richard van der Hoff 2023-07-17 09:08:25 +01:00 committed by GitHub
parent cb03aac4cf
commit 7c3dcdf613
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 2 additions and 2 deletions

View File

@ -169,12 +169,12 @@ jobs:
# The built-in Electron runner seems to grind to a halt trying to run the tests, so use chrome. # The built-in Electron runner seems to grind to a halt trying to run the tests, so use chrome.
browser: ${{ steps.setup-chrome.outputs.chrome-path }} browser: ${{ steps.setup-chrome.outputs.chrome-path }}
headed: true headed: true
start: npx serve -p 8080 ../webapp start: npx serve -p 8080 -L ../webapp
wait-on: "http://localhost:8080" wait-on: "http://localhost:8080"
record: true record: true
parallel: true parallel: true
command-prefix: "yarn percy exec --parallel --" command-prefix: "yarn percy exec --parallel --"
config: '{"reporter":"cypress-multi-reporters", "reporterOptions": { "configFile": "cypress-ci-reporter-config.json" }, "morgan": false }' config: '{"reporter":"cypress-multi-reporters", "reporterOptions": { "configFile": "cypress-ci-reporter-config.json" } }'
ci-build-id: ${{ needs.prepare.outputs.uuid }} ci-build-id: ${{ needs.prepare.outputs.uuid }}
env: env:
# pass the Dashboard record key as an environment variable # pass the Dashboard record key as an environment variable