Skip to content

Commit

Permalink
fix: Add npm ci instructions for Travis CI
Browse files Browse the repository at this point in the history
* Add npm ci instructions
fix #1844
  • Loading branch information
BronsonQuick authored and fgiraud committed Sep 10, 2019
1 parent ade328f commit 0434f15
Showing 1 changed file with 5 additions and 2 deletions.
7 changes: 5 additions & 2 deletions packages/docs/docs/guide/deploy.md
Original file line number Diff line number Diff line change
Expand Up @@ -66,14 +66,17 @@ You can also run the above script in your CI setup to enable automatic deploymen

2. Create a file named `.travis.yml` in the root of your project.

3. Use GitHub Pages deploy provider template and follow the [travis documentation](https://docs.travis-ci.com/user/deployment/pages/).
3. Run `npm install` locally and commit `package-lock.json` as it’s required for `npm ci`.

4. Use GitHub Pages deploy provider template and follow the [travis documentation](https://docs.travis-ci.com/user/deployment/pages/).

``` yaml
language: node_js
node_js:
- lts/*
install:
- npm ci
script:
- npm install
- npm run docs:build
deploy:
provider: pages
Expand Down

0 comments on commit 0434f15

Please sign in to comment.