From 0a7b04dcfee64dab9ddef4662627b3c73d3b4302 Mon Sep 17 00:00:00 2001 From: Nic Laflamme Date: Mon, 4 Aug 2025 16:32:13 -0400 Subject: [PATCH 1/2] wip --- .github/workflows/ci.yaml | 1 + 1 file changed, 1 insertion(+) diff --git a/.github/workflows/ci.yaml b/.github/workflows/ci.yaml index 1ff5ad2..973bf6a 100644 --- a/.github/workflows/ci.yaml +++ b/.github/workflows/ci.yaml @@ -7,6 +7,7 @@ on: jobs: verify-tomls: runs-on: ubuntu-latest + timeout-minutes: 10 steps: - name: Checkout code uses: actions/checkout@v4 From a077121ac9b0e6e699ec4b3dc9b6dbcdca16aeac Mon Sep 17 00:00:00 2001 From: Nic Laflamme Date: Mon, 4 Aug 2025 16:42:18 -0400 Subject: [PATCH 2/2] add-progress-log --- ci/bun/scripts/verifyTomls.ts | 1 + 1 file changed, 1 insertion(+) diff --git a/ci/bun/scripts/verifyTomls.ts b/ci/bun/scripts/verifyTomls.ts index af4fce2..948f7ec 100644 --- a/ci/bun/scripts/verifyTomls.ts +++ b/ci/bun/scripts/verifyTomls.ts @@ -156,6 +156,7 @@ async function verifySnippet(snippet: Snippet): Promise { const overallSuccess = configValid || usersValid; if (overallSuccess) { + console.log(`${snippet.file}:${snippet.line} verified successfully`); return { success: true }; }