Fix tag in tests workflow (#3547)
* Fix tag in tests workflow * Fix quote
This commit is contained in:
parent
08a5ea93ab
commit
f71855e4f2
2 changed files with 2 additions and 2 deletions
2
.github/workflows/percy-demo-tests.yml
vendored
2
.github/workflows/percy-demo-tests.yml
vendored
|
@ -31,7 +31,7 @@ jobs:
|
|||
cypress-run-tests:
|
||||
runs-on: ubuntu-latest
|
||||
env:
|
||||
TEST_KIND: ${{ github.event.inputs.testsKind || github.event.client_payload.testsKind || "all"}}
|
||||
TEST_KIND: ${{ github.event.inputs.testsKind || github.event.client_payload.testsKind || 'all'}}
|
||||
container: cypress/browsers:node18.12.0-chrome106-ff106
|
||||
|
||||
steps:
|
||||
|
|
2
.github/workflows/tests-nightly.yml
vendored
2
.github/workflows/tests-nightly.yml
vendored
|
@ -95,7 +95,7 @@ jobs:
|
|||
runs-on: ubuntu-latest
|
||||
env:
|
||||
NODE_OPTIONS: "--max_old_space_size=4096"
|
||||
GREP_TAGS: ${{ github.event.inputs.tags || "@allEnv"}}
|
||||
GREP_TAGS: ${{ github.event.inputs.tags || '@allEnv'}}
|
||||
outputs:
|
||||
status: ${{ steps.cypress.outcome }}
|
||||
container: cypress/browsers:node18.12.0-chrome106-ff106
|
||||
|
|
Loading…
Reference in a new issue