Skip to content

Commit

Permalink
fix: try to run tests individually
Browse files Browse the repository at this point in the history
  • Loading branch information
Princesseuh committed Oct 7, 2024
1 parent 40e754f commit a264fd1
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -48,8 +48,12 @@ jobs:
run: pnpm build

- name: Test (Linux)
run: xvfb-run -a pnpm test
if: runner.os == 'Linux'
run: |
cd packages/vscode
xvfb-run -a pnpm test
cd ../ts-plugin
xvfb-run -a pnpm test
- name: Test
run: pnpm test
Expand Down

0 comments on commit a264fd1

Please sign in to comment.