We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 7c53709 commit 5451633Copy full SHA for 5451633
1 file changed
synthtool/gcp/templates/node_library/.github/workflows/ci.yaml
@@ -16,7 +16,11 @@ jobs:
16
with:
17
node-version: ${{ '{{' }} matrix.node {{ '}}' }}
18
- run: node --version
19
- - run: npm install --engine-strict
+ # The first installation step ensures that all of our production
20
+ # dependencies work on the given Node.js version, this helps us find
21
+ # dependencies that don't match our engines field:
22
+ - run: npm install --production --engine-strict
23
+ - run: npm install
24
- run: npm test
25
- name: coverage
26
uses: codecov/codecov-action@v1
0 commit comments