Replace CI trigger for Cypress (#2971)
This commit is contained in:
parent
2ac64795ee
commit
cfcc4481e8
1 changed files with 6 additions and 2 deletions
8
.github/workflows/cypress.yml
vendored
8
.github/workflows/cypress.yml
vendored
|
@ -1,5 +1,9 @@
|
||||||
name: Cypress
|
name: Cypress
|
||||||
on: push
|
on:
|
||||||
|
push:
|
||||||
|
branches: [main]
|
||||||
|
pull_request:
|
||||||
|
branches: [main]
|
||||||
jobs:
|
jobs:
|
||||||
setup:
|
setup:
|
||||||
runs-on: ubuntu-latest
|
runs-on: ubuntu-latest
|
||||||
|
@ -111,7 +115,7 @@ jobs:
|
||||||
env:
|
env:
|
||||||
CYPRESS_BASE_URL: http://localhost:8080/admin/
|
CYPRESS_BASE_URL: http://localhost:8080/admin/
|
||||||
CYPRESS_KEYCLOAK_SERVER: http://localhost:8080
|
CYPRESS_KEYCLOAK_SERVER: http://localhost:8080
|
||||||
CYPRESS_RECORD_KEY: b8f1d15e-eab8-4ee7-8e44-c6d7cd8fc0eb
|
CYPRESS_RECORD_KEY: ${{ secrets.CYPRESS_RECORD_KEY }}
|
||||||
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|
||||||
|
|
||||||
- name: Add Cypress videos artifacts
|
- name: Add Cypress videos artifacts
|
||||||
|
|
Loading…
Reference in a new issue