Skip to content

Commit

Permalink
Attempt to fix Linux tests (#963)
Browse files Browse the repository at this point in the history
* Trying it out

* chore: changeset

* fix: try to run tests individually
  • Loading branch information
Princesseuh authored Oct 7, 2024
1 parent e0ead1a commit 40ebf98
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 1 deletion.
5 changes: 5 additions & 0 deletions .changeset/proud-badgers-talk.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
---
'astro-vscode': patch
---

Fixes publish
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 40ebf98

Please sign in to comment.