File tree 1 file changed +5
-5
lines changed
1 file changed +5
-5
lines changed Original file line number Diff line number Diff line change @@ -171,21 +171,21 @@ if ! grep -q 'working tree clean' <<< "$GIT_STATUS"; then
171
171
fi
172
172
173
173
echo " Installing dependencies according to lockfile"
174
- yarn -s install --frozen-lockfile
174
+ yarn install --frozen-lockfile
175
175
176
176
echo " Running tests"
177
- yarn -s run test
177
+ yarn run test
178
178
179
179
if [ -n " $PREID " ]; then
180
180
echo " Bumping package.json $RELEASE_TYPE , $PREID version and tagging commit"
181
- yarn -s version --$RELEASE_TYPE --preid $PREID
181
+ yarn version --$RELEASE_TYPE --preid $PREID
182
182
else
183
183
echo " Bumping package.json $RELEASE_TYPE version and tagging commit"
184
- yarn -s version --$RELEASE_TYPE
184
+ yarn version --$RELEASE_TYPE
185
185
fi
186
186
187
187
echo " Building"
188
- yarn -s run build
188
+ yarn run build
189
189
190
190
verify_commit_is_signed
191
191
You can’t perform that action at this time.
0 commit comments