chore: correct runner name (#2710)
This commit is contained in:
parent
801606e37f
commit
d7440cfe54
2
.github/workflows/cypress-nightly.yml
vendored
2
.github/workflows/cypress-nightly.yml
vendored
@ -7,7 +7,7 @@ on:
|
|||||||
|
|
||||||
jobs:
|
jobs:
|
||||||
nightly:
|
nightly:
|
||||||
uses: ./.github/workflows/cypress-pr.yml
|
uses: ./.github/workflows/cypress-run.yml
|
||||||
secrets: inherit
|
secrets: inherit
|
||||||
with:
|
with:
|
||||||
projects: '["explorer-e2e","token-e2e","trading-e2e"]'
|
projects: '["explorer-e2e","token-e2e","trading-e2e"]'
|
||||||
|
1
.github/workflows/cypress-pr.yml
vendored
1
.github/workflows/cypress-pr.yml
vendored
@ -53,6 +53,7 @@ jobs:
|
|||||||
|
|
||||||
run:
|
run:
|
||||||
needs: pr
|
needs: pr
|
||||||
|
if: ${{ needs.pr.outputs.projects != '[]' }}
|
||||||
uses: ./.github/workflows/cypress-run.yml
|
uses: ./.github/workflows/cypress-run.yml
|
||||||
secrets: inherit
|
secrets: inherit
|
||||||
with:
|
with:
|
||||||
|
3
.github/workflows/cypress-run.yml
vendored
3
.github/workflows/cypress-run.yml
vendored
@ -14,9 +14,10 @@ on:
|
|||||||
jobs:
|
jobs:
|
||||||
e2e:
|
e2e:
|
||||||
strategy:
|
strategy:
|
||||||
|
fail-fast: false
|
||||||
matrix:
|
matrix:
|
||||||
project: ${{ fromJSON(inputs.projects) }}
|
project: ${{ fromJSON(inputs.projects) }}
|
||||||
runs-on: self-hosted
|
runs-on: self-hosted-runner
|
||||||
timeout-minutes: 30
|
timeout-minutes: 30
|
||||||
steps:
|
steps:
|
||||||
# Checks if skip cache was requested
|
# Checks if skip cache was requested
|
||||||
|
Loading…
Reference in New Issue
Block a user