Sfoglia il codice sorgente

Change travis.yml back to use `npm install`

The npm version that is running on travis.ci doesn't support `npm ci`
It looks the easy way to update the npm version is updating the
package-lock.json file.
todd 6 anni fa
parent
commit
8f1588c5df
1 ha cambiato i file con 1 aggiunte e 1 eliminazioni
  1. 1 1
      .travis.yml

+ 1 - 1
.travis.yml

@@ -4,7 +4,7 @@ language:
 
 install:
   - bundle install
-  - npm ci
+  - npm install
 
 script:
   - npm run build