Skip to content

Commit ca025dc

Browse files
committed
fix: update temp workflow to call e2e tests directly with proper dependencies
1 parent 5e30904 commit ca025dc

File tree

1 file changed

+16
-6
lines changed

1 file changed

+16
-6
lines changed

.github/workflows/temp-e2e-verification.yml

Lines changed: 16 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -9,12 +9,22 @@ on:
99
branches:
1010
- fix/v5-e2e-testing
1111

12-
env:
13-
CYPRESS_GOOGLE_CLIENTID: ${{ secrets.CYPRESS_GOOGLE_CLIENTID }}
14-
CYPRESS_GOOGLE_CLIENT_SECRET: ${{ secrets.CYPRESS_GOOGLE_CLIENT_SECRET }}
15-
CYPRESS_GOOGLE_REFRESH_TOKEN: ${{ secrets.CYPRESS_GOOGLE_REFRESH_TOKEN }}
16-
1712
jobs:
13+
prebuild-ubuntu:
14+
uses: ./.github/workflows/callable-prebuild-amplify-js.yml
15+
with:
16+
runs_on: ubuntu-latest
17+
prebuild-macos:
18+
uses: ./.github/workflows/callable-prebuild-amplify-js.yml
19+
with:
20+
runs_on: macos-latest
21+
prebuild-samples-staging:
22+
secrets: inherit
23+
uses: ./.github/workflows/callable-prebuild-samples-staging.yml
1824
e2e:
25+
needs:
26+
- prebuild-macos
27+
- prebuild-ubuntu
28+
- prebuild-samples-staging
1929
secrets: inherit
20-
uses: ./.github/workflows/callable-release-verification.yml
30+
uses: ./.github/workflows/callable-e2e-tests.yml

0 commit comments

Comments
 (0)