This repository was archived by the owner on Nov 8, 2024. It is now read-only.
File tree 2 files changed +17
-17
lines changed
2 files changed +17
-17
lines changed Original file line number Diff line number Diff line change 41
41
- run : npm run lint
42
42
- run : npx commitlint --from origin/master
43
43
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
-
60
44
cover :
61
45
<< : *defaults
62
46
steps :
@@ -74,7 +58,6 @@ workflows:
74
58
- test-node12
75
59
- test-smoke
76
60
- lint
77
- - docs
78
61
- cover :
79
62
requires :
80
63
- 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