Skip to content

Commit

Permalink
GHA: Add workflow dispatch option to the cypress workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
quartje committed Sep 13, 2023
1 parent 265a2f6 commit 738120d
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion .github/workflows/run-cypress.yml
Original file line number Diff line number Diff line change
@@ -1,9 +1,11 @@
name: test-integration
name: run cypress
on:
push:
branches:
- master
- feature/move-cypress-tests
pull_request:
workflow_dispatch:
# run at 6 hour UTC
schedule:
- cron: "0 6 * * *"
Expand Down Expand Up @@ -44,6 +46,7 @@ jobs:
SYMFONY_ENV=ci composer install --prefer-dist -n -o --ignore-platform-reqs && \
./app/console cache:clear --env=ci && \
cd theme && CYPRESS_INSTALL_BINARY=0 yarn install --frozen-lockfile && EB_THEME=skeune yarn build
'
- name: Run Cypress integration tests
if: always()
run: |
Expand Down

0 comments on commit 738120d

Please sign in to comment.