We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 58e8e61 commit 9317daeCopy full SHA for 9317dae
1 file changed
.github/workflows/ci.yml
@@ -65,9 +65,16 @@ jobs:
65
test "${{ steps.configure-nodejs.outputs.working-directory }}" = "${{ matrix.fixture }}"
66
test "${{ steps.configure-nodejs.outputs.lockfile-name }}" = "${{ matrix.lockfile-name }}"
67
68
- - name: Validate installed dependency
+ - name: Assert lookup-only behavior
69
working-directory: ${{ matrix.fixture }}
70
- run: node check.mjs
+ shell: bash
71
+ run: |
72
+ if [ "${{ steps.configure-nodejs.outputs.cache-hit }}" = "true" ]; then
73
+ test ! -d node_modules
74
+ else
75
+ test -d node_modules
76
+ node check.mjs
77
+ fi
78
79
fixture-validate:
80
name: Fixture Validate (${{ matrix.package-manager }})
0 commit comments