We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 2c8c8d8 commit eeb7d81Copy full SHA for eeb7d81
2 files changed
.github/workflows/ci.yml
@@ -44,8 +44,13 @@ jobs:
44
- name: Test
45
run: pnpm run test
46
47
- publish:
+ e2e:
48
+ name: E2E Tests
49
needs: build-and-test
50
+ uses: ./.github/workflows/e2e.yml
51
+
52
+ publish:
53
+ needs: [build-and-test, e2e]
54
if: startsWith(github.ref, 'refs/tags/v')
55
runs-on: ubuntu-latest
56
steps:
.github/workflows/e2e.yml
@@ -1,10 +1,7 @@
1
name: E2E Tests
2
3
on:
4
- push:
5
- branches: [main]
6
- pull_request:
7
+ workflow_call:
8
workflow_dispatch:
9
10
env:
@@ -78,4 +75,3 @@ jobs:
78
75
if: always()
79
76
working-directory: packages/test-suite
80
77
run: docker compose down -v
81
-
0 commit comments