We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 5279684 commit 4fa73bdCopy full SHA for 4fa73bd
packages/google-privacy-dlp/.circleci/config.yml
@@ -189,6 +189,10 @@ jobs:
189
command: |
190
mkdir -p /home/node/.npm-global
191
npm install
192
+ repo_tools="node_modules/@google-cloud/nodejs-repo-tools/bin/tools"
193
+ if ! test -x "$repo_tools"; then
194
+ chmod +x "$repo_tools"
195
+ fi
196
npm link
197
environment:
198
NPM_CONFIG_PREFIX: /home/node/.npm-global
@@ -228,7 +232,12 @@ jobs:
228
232
-k "${SYSTEM_TESTS_ENCRYPTION_KEY}"
229
233
- run:
230
234
name: Install modules and dependencies.
231
- command: npm install
235
+ command: |-
236
+ npm install
237
238
239
240
241
242
name: Run system tests.
243
command: npm run system-test
0 commit comments