File tree 2 files changed +19
-2
lines changed
2 files changed +19
-2
lines changed Original file line number Diff line number Diff line change
1
+ name : docs
2
+
3
+ on :
4
+ push :
5
+ branches :
6
+ - master
7
+
8
+ jobs :
9
+ deploy :
10
+ runs-on : ubuntu-latest
11
+ steps :
12
+ - uses : actions/checkout@v2
13
+ - uses : actions/setup-python@v2
14
+ with :
15
+ python-version : 3.x
16
+ - run : pip install mkdocs-material
17
+ - run : mkdocs gh-deploy --strict
Original file line number Diff line number Diff line change 50
50
"build-examples" : " lerna exec --scope=troika-examples -- npm run build" ,
51
51
"serve-examples" : " lerna exec --scope=troika-examples -- npm run serve" ,
52
52
"examples" : " npm run serve-examples" ,
53
- "serve-docs" : " mkdocs serve" ,
54
- "build-docs" : " mkdocs build" ,
53
+ "serve-docs" : " mkdocs serve --strict " ,
54
+ "build-docs" : " mkdocs build --strict " ,
55
55
"deploy-docs" : " mkdocs gh-deploy --strict" ,
56
56
"clean" : " lerna exec -- rm -rf dist" ,
57
57
"lint" : " lerna exec -- standard src/**/*.js src/**/*.jsx"
You can’t perform that action at this time.
0 commit comments