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:
parent
960ea53c97
commit
0d6ba37933
1 changed files with 12 additions and 2 deletions
14
.github/workflows/ci.yml
vendored
14
.github/workflows/ci.yml
vendored
|
@ -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
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue