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 f862cb6 commit 1aa3735Copy full SHA for 1aa3735
.github/workflows/ci.yml
@@ -29,6 +29,10 @@ jobs:
29
- run: pnpm vscode-utils prepareFrameworkBuild
30
- run: pnpm build
31
- run: timeout 60 pnpm test-plugin
32
+ if: ${{ runner.os != 'Windows' }}
33
+ # if command with timeout already failed on unix, Windows job will be cancelled
34
+ - run: pnpm test-plugin
35
+ if: ${{ runner.os == 'Windows' }}
36
- uses: GabrielBB/[email protected]
37
with:
38
run: pnpm integration-test
0 commit comments