From 869aa75d2122e7f44de38f0e7fa06794cb97cdd1 Mon Sep 17 00:00:00 2001 From: Timmy Braun Date: Thu, 5 Dec 2024 10:03:28 -0600 Subject: [PATCH] CI change --- .github/workflows/ci.yml | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 90ae541..3a4e13e 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -33,7 +33,11 @@ jobs: - name: Run tests (macOS) if: matrix.os == 'macos-latest' - run: npm run test -- --user-data-dir=/tmp/test-user-data + run: | + mkdir -p /tmp/vscode + mv ./* /tmp/vscode + cd /tmp/vscode + npm run test - name: Run tests (Windows) if: matrix.os == 'windows-latest'