1
0
Fork 0
mirror of https://github.com/rharkor/caching-for-turbo.git synced 2025-06-09 09:35:17 +09:00

feat: pipe checks

This commit is contained in:
rharkor 2024-06-25 21:22:15 +02:00
parent 960ea53c97
commit 0d6ba37933

View file

@ -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