We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent a4f935f commit d8c5d43Copy full SHA for d8c5d43
.github/workflows/test-vp-create.yml
@@ -264,4 +264,11 @@ jobs:
264
- name: Verify cache (monorepo only)
265
if: matrix.template.name == 'monorepo'
266
working-directory: ${{ runner.temp }}/test-project
267
- run: ${{ matrix.template.verify-command }}
+ run: |
268
+ output=$(vp run ready 2>&1)
269
+ echo "$output"
270
+ if ! echo "$output" | grep -q 'cache hit'; then
271
+ echo "✗ Expected cache hit on second run"
272
+ exit 1
273
+ fi
274
+ echo "✓ Cache hit verified"
0 commit comments