Skip to content

Commit

Permalink
ci: clearer
Browse files Browse the repository at this point in the history
  • Loading branch information
SoonIter committed Aug 12, 2024
1 parent 497059c commit 6f755ec
Show file tree
Hide file tree
Showing 2 changed files with 13 additions and 8 deletions.
9 changes: 6 additions & 3 deletions .github/workflows/test-ubuntu.yml
Original file line number Diff line number Diff line change
Expand Up @@ -99,10 +99,13 @@ jobs:
if: steps.changes.outputs.changed == 'true'
run: pnpm install && cd ./e2e && pnpx playwright install

- name: E2E Test
- name: E2E Artifact Test (Vitest)
if: steps.changes.outputs.changed == 'true'
run: |
pnpm run test:artifact && pnpm run test:e2e
run: pnpm run test:artifact

- name: E2E Test (Playwright)
if: steps.changes.outputs.changed == 'true'
run: pnpm run test:e2e

- name: Examples Test
if: steps.changes.outputs.changed == 'true'
Expand Down
12 changes: 7 additions & 5 deletions .github/workflows/test-windows.yml
Original file line number Diff line number Diff line change
Expand Up @@ -108,12 +108,14 @@ jobs:
if: steps.changes.outputs.changed == 'true'
run: pnpm install && cd ./e2e && npx playwright install

- name: E2E Test
- name: E2E Artifact Test (Vitest)
if: steps.changes.outputs.changed == 'true'
run: |
pnpm run test:artifact && pnpm run test:e2e
run: pnpm run test:artifact

- name: E2E Test (Playwright)
if: steps.changes.outputs.changed == 'true'
run: pnpm run test:e2e

- name: Examples Test
if: steps.changes.outputs.changed == 'true'
run: |
pnpm run build:examples
run: pnpm run build:examples

0 comments on commit 6f755ec

Please sign in to comment.