Skip to content

Commit eeb7d81

Browse files
committed
chore: update ci
1 parent 2c8c8d8 commit eeb7d81

2 files changed

Lines changed: 7 additions & 6 deletions

File tree

.github/workflows/ci.yml

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -44,8 +44,13 @@ jobs:
4444
- name: Test
4545
run: pnpm run test
4646

47-
publish:
47+
e2e:
48+
name: E2E Tests
4849
needs: build-and-test
50+
uses: ./.github/workflows/e2e.yml
51+
52+
publish:
53+
needs: [build-and-test, e2e]
4954
if: startsWith(github.ref, 'refs/tags/v')
5055
runs-on: ubuntu-latest
5156
steps:

.github/workflows/e2e.yml

Lines changed: 1 addition & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,7 @@
11
name: E2E Tests
22

33
on:
4-
push:
5-
branches: [main]
6-
pull_request:
7-
branches: [main]
4+
workflow_call:
85
workflow_dispatch:
96

107
env:
@@ -78,4 +75,3 @@ jobs:
7875
if: always()
7976
working-directory: packages/test-suite
8077
run: docker compose down -v
81-

0 commit comments

Comments
 (0)