Travis: Disable npm cache

This disables npm caching for all Travis runs. The effect on the duration of the run is not significant and it should prevent problems with dirty cache in the future.
This commit is contained in:
regexowl 2024-01-04 10:53:02 +01:00 committed by Sanne Raymaekers
parent f597b6b854
commit 6d0599ead4

View file

@ -10,6 +10,8 @@ notifications:
email: false
node_js:
- '16'
cache:
npm: false
install:
- npm ci
before_script: |