This repository was archived by the owner on Nov 8, 2024. It is now read-only.
File tree Expand file tree Collapse file tree 2 files changed +17
-17
lines changed Expand file tree Collapse file tree 2 files changed +17
-17
lines changed Original file line number Diff line number Diff line change 4141 - run : npm run lint
4242 - run : npx commitlint --from origin/master
4343
44- docs :
45- << : *defaults
46- docker :
47- - image : circleci/python:3.6.8-node-browsers
48- steps :
49- - checkout
50- - << : *install
51- - run :
52- working_directory : docs
53- command : pipenv install --dev
54- - run :
55- working_directory : docs
56- command : |
57- export PATH="$(yarn bin):$PATH"
58- pipenv run make html
59-
6044 cover :
6145 << : *defaults
6246 steps :
@@ -74,7 +58,6 @@ workflows:
7458 - test-node12
7559 - test-smoke
7660 - lint
77- - docs
7861 - cover :
7962 requires :
8063 - test-node12
Original file line number Diff line number Diff line change 1+ name : Documentation
2+ on : [push]
3+ jobs :
4+ build :
5+ runs-on : ubuntu-latest
6+ steps :
7+ - uses : actions/checkout@v2
8+ - uses : actions/setup-node@v2-beta
9+ with :
10+ node-version : 10
11+ - uses : actions/setup-python@v2
12+ with :
13+ python-version : 3.6
14+ - run : pip install -r docs/requirements.txt
15+ - run : yarn --frozen-lockfile --ignore-optional
16+ - run : env PATH="$(yarn bin):$PATH" make html
17+ working-directory : docs
You can’t perform that action at this time.
0 commit comments