Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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