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 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 }; }