Skip to content

Commit 18cd48e

Browse files
committed
ci: exclude e2e from ci-packages and add lint/type-check to ci-e2e
1 parent d8b5b00 commit 18cd48e

2 files changed

Lines changed: 4 additions & 2 deletions

File tree

.github/actions/ci/action.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,5 +17,5 @@ runs:
1717
shell: bash
1818
- run: pnpm fmt:check
1919
shell: bash
20-
- run: pnpm exec turbo run lint test type-check
20+
- run: pnpm exec turbo run lint test type-check --filter='!e2e'
2121
shell: bash

.github/workflows/ci-e2e.yaml

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,8 +32,10 @@ jobs:
3232
run: pnpm install
3333
- name: Build packages
3434
run: pnpm exec turbo run build
35+
- name: Lint & Type-check
36+
run: pnpm exec turbo run lint type-check --filter=e2e
3537
- name: Run E2E tests
36-
run: pnpm --filter e2e test
38+
run: pnpm --filter e2e exec playwright test
3739
env:
3840
VITE_TAILOR_APP_URL: ${{ secrets.E2E_TAILOR_APP_URL }}
3941
VITE_TAILOR_CLIENT_ID: ${{ secrets.E2E_TAILOR_CLIENT_ID }}

0 commit comments

Comments
 (0)