From 0d6ba3793316003d93eea4c33014087b0ad579d5 Mon Sep 17 00:00:00 2001 From: rharkor Date: Tue, 25 Jun 2024 21:22:15 +0200 Subject: [PATCH] feat: pipe checks --- .github/workflows/ci.yml | 14 ++++++++++++-- 1 file changed, 12 insertions(+), 2 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 69f3ccb..120be90 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -75,7 +75,12 @@ jobs: run: npm run test - name: Test build cache (full cache) - run: npm run test + run: | + npm run test | tee test-output.log + if ! grep -q "FULL TURBO" test-output.log; then + echo "FULL TURBO not found in output" + exit 1 + fi test-action-windows: name: GitHub Actions Test (Windows) @@ -109,4 +114,9 @@ jobs: run: npm run test - name: Test build cache (full cache) - run: npm run test + run: | + npm run test | tee test-output.log + if ! findstr "FULL TURBO" test-output.log; then + echo "FULL TURBO not found in output" + exit 1 + fi