Skip to content

Commit fd6e3a0

Browse files
Fix CI failing due to diff caused by npm install (#277)
* Printing git diff * Stop caching node_modules
1 parent f7cdd47 commit fd6e3a0

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

.travis.yml

-3
Original file line numberDiff line numberDiff line change
@@ -27,9 +27,6 @@ deploy:
2727
tag: "$NPM_TAG"
2828
on:
2929
branch: master
30-
cache:
31-
directories:
32-
- node_modules
3330
install:
3431
- npm install
3532
script:

travis-ci-build.sh

+3
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,9 @@ npm run lint
55
npm test
66

77
npm run generate
8+
9+
git --no-pager diff
10+
811
MODIFIED_FILES=$(git diff --name-only)
912
if [[ -n $MODIFIED_FILES ]]; then
1013
echo "ERROR: Changes detected in generated code, please run 'npm run generate' and check-in the changes."

0 commit comments

Comments
 (0)