We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 4e775d3 commit 43dc85fCopy full SHA for 43dc85f
1 file changed
.github/workflows/e2e-tests.yml
@@ -0,0 +1,17 @@
1
+name: E2E Tests
2
+
3
+on:
4
+ workflow_run:
5
+ workflows: [Deploy Staging]
6
+ types: [completed]
7
8
+jobs:
9
+ cypress:
10
+ runs-on: ubuntu-latest
11
+ steps:
12
+ - uses: actions/checkout@v4
13
+ - name: Cypress run
14
+ uses: cypress-io/github-action@v6
15
+ with:
16
+ start: npm run start:staging # script that hits staging URL
17
+ wait-on: 'http://staging.myapp.com'
0 commit comments