From 40ebf984083cb7428f1bdb133caee364e8506165 Mon Sep 17 00:00:00 2001 From: Erika <3019731+Princesseuh@users.noreply.github.com> Date: Mon, 7 Oct 2024 15:02:11 +0200 Subject: [PATCH] Attempt to fix Linux tests (#963) * Trying it out * chore: changeset * fix: try to run tests individually --- .changeset/proud-badgers-talk.md | 5 +++++ .github/workflows/ci.yml | 6 +++++- 2 files changed, 10 insertions(+), 1 deletion(-) create mode 100644 .changeset/proud-badgers-talk.md diff --git a/.changeset/proud-badgers-talk.md b/.changeset/proud-badgers-talk.md new file mode 100644 index 00000000..f040f19c --- /dev/null +++ b/.changeset/proud-badgers-talk.md @@ -0,0 +1,5 @@ +--- +'astro-vscode': patch +--- + +Fixes publish diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 973f6c0c..588012d6 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -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