File tree Expand file tree Collapse file tree 1 file changed +16
-2
lines changed
packages/google-privacy-dlp/.circleci Expand file tree Collapse file tree 1 file changed +16
-2
lines changed Original file line number Diff line number Diff line change 92
92
fi
93
93
- run :
94
94
name : Install modules and dependencies.
95
- command : npm install
95
+ command : |-
96
+ npm install
97
+ repo_tools="node_modules/@google-cloud/nodejs-repo-tools/bin/tools"
98
+ if ! test -x "$repo_tools"; then
99
+ chmod +x "$repo_tools"
100
+ fi
96
101
- run :
97
102
name : Run unit tests.
98
103
command : npm test
@@ -127,6 +132,10 @@ jobs:
127
132
command : |
128
133
mkdir -p /home/node/.npm-global
129
134
npm install
135
+ repo_tools="node_modules/@google-cloud/nodejs-repo-tools/bin/tools"
136
+ if ! test -x "$repo_tools"; then
137
+ chmod +x "$repo_tools"
138
+ fi
130
139
npm link
131
140
environment :
132
141
NPM_CONFIG_PREFIX : /home/node/.npm-global
@@ -153,7 +162,12 @@ jobs:
153
162
- run : *remove_package_lock
154
163
- run :
155
164
name : Install modules and dependencies.
156
- command : npm install
165
+ command : |-
166
+ npm install
167
+ repo_tools="node_modules/@google-cloud/nodejs-repo-tools/bin/tools"
168
+ if ! test -x "$repo_tools"; then
169
+ chmod +x "$repo_tools"
170
+ fi
157
171
- run :
158
172
name : Build documentation.
159
173
command : npm run docs
You can’t perform that action at this time.
0 commit comments