diff --git a/.github/workflows/CI.yml b/.github/workflows/CI.yml index 1a8047b9..55219d38 100644 --- a/.github/workflows/CI.yml +++ b/.github/workflows/CI.yml @@ -53,13 +53,6 @@ jobs: run: | pnpm install - # - name: Setup SSH debugging session - # uses: mxschmitt/action-tmate@v3 - - - name: Test - run: | - pnpm run test - # Create self-contained executable that bundles Nodejs - name: Create Executable run: | @@ -73,6 +66,14 @@ jobs: ./dist retention-days: 1 + # - name: Setup SSH debugging session + # uses: mxschmitt/action-tmate@v3 + + - name: Test + if: "!contains(github.event.head_commit.message, '[skip ci test]')" + run: | + pnpm run test + Docker: runs-on: ${{ matrix.os }} strategy: diff --git a/src/llvm/__tests__/llvm.test.ts b/src/llvm/__tests__/llvm.test.ts index 69aab16d..8131b355 100644 --- a/src/llvm/__tests__/llvm.test.ts +++ b/src/llvm/__tests__/llvm.test.ts @@ -4,7 +4,7 @@ import { isValidUrl } from "../../utils/http/validate_url" import { setupTmpDir, cleanupTmpDir, testBin } from "../../utils/tests/test-helpers" import { isGitHubCI } from "../../utils/env/isci" -jest.setTimeout(300000) +jest.setTimeout(400000) async function testUrl(version: string) { const [specificVersion, url] = await getSpecificVersionAndUrl(VERSIONS, process.platform, version, getUrl)