Skip to content

Commit

Permalink
Build Tooling: Use "full" npm install for Build Artifacts Travis ta…
Browse files Browse the repository at this point in the history
…sk (#16166)
  • Loading branch information
aduth authored and gziolo committed Jun 14, 2019
1 parent 09f67ea commit 4371354
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,11 @@ jobs:

- name: Build artifacts
install:
- npm ci
# A "full" install is executed, since `npm ci` does not always exit
# with an error status code if the lock file is inaccurate.
#
# See: https://github.com/WordPress/gutenberg/issues/16157
- npm install
script:
- npm run check-local-changes

Expand Down

0 comments on commit 4371354

Please sign in to comment.