We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 58e0123 commit 407f238Copy full SHA for 407f238
.github/workflows/test.yml
@@ -1,5 +1,4 @@
1
name: Test
2
-
3
on:
4
pull_request:
5
push:
@@ -25,10 +24,12 @@ jobs:
25
24
uses: actions/setup-node@v4
26
with:
27
node-version: 22.x
28
- cache: "pnpm"
+ # cache: "pnpm"
29
30
- - run: pnpm install
31
- - run: xvfb-run -a pnpm test
32
- if: runner.os == 'Linux'
33
- - run: pnpm test
34
- if: runner.os != 'Linux'
+ # This is disabled until https://github.com/microsoft/vscode-test-cli/issues/77
+ # is resolved. We don't have any tests anyway.
+ # - run: pnpm install
+ # - run: xvfb-run -a pnpm test
+ # if: runner.os == 'Linux'
+ # - run: pnpm test
35
+ # if: runner.os != 'Linux'
0 commit comments