Skip to content

Commit

Permalink
Refactor CI workflow: add wait step between macOS and Windows UI test…
Browse files Browse the repository at this point in the history
…s to ensure proper sequencing
  • Loading branch information
tsviz committed Dec 2, 2024
1 parent 9cc2809 commit 81f5d6a
Showing 1 changed file with 8 additions and 1 deletion.
9 changes: 8 additions & 1 deletion .github/workflows/cd.yml
Original file line number Diff line number Diff line change
Expand Up @@ -116,8 +116,15 @@ jobs:
BROWSER: ${{ matrix.browser }}
BASE_URL: "https://${{ needs.setup-staging-environment.outputs.CONTAINER_APP_URL }}"

wait-between-tests:
needs: ui-tests-macos
runs-on: ubuntu-latest
steps:
- name: Wait for 5 minutes
run: sleep 300

ui-tests-windows:
needs: [ui-tests-macos, setup-staging-environment]
needs: [wait-between-tests, setup-staging-environment]
permissions:
actions: read
contents: read
Expand Down

0 comments on commit 81f5d6a

Please sign in to comment.