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 d8b5b00 commit 18cd48eCopy full SHA for 18cd48e
2 files changed
.github/actions/ci/action.yaml
@@ -17,5 +17,5 @@ runs:
17
shell: bash
18
- run: pnpm fmt:check
19
20
- - run: pnpm exec turbo run lint test type-check
+ - run: pnpm exec turbo run lint test type-check --filter='!e2e'
21
.github/workflows/ci-e2e.yaml
@@ -32,8 +32,10 @@ jobs:
32
run: pnpm install
33
- name: Build packages
34
run: pnpm exec turbo run build
35
+ - name: Lint & Type-check
36
+ run: pnpm exec turbo run lint type-check --filter=e2e
37
- name: Run E2E tests
- run: pnpm --filter e2e test
38
+ run: pnpm --filter e2e exec playwright test
39
env:
40
VITE_TAILOR_APP_URL: ${{ secrets.E2E_TAILOR_APP_URL }}
41
VITE_TAILOR_CLIENT_ID: ${{ secrets.E2E_TAILOR_CLIENT_ID }}
0 commit comments