We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a682228 commit 95c68f4Copy full SHA for 95c68f4
.github/workflows/ci.yml
@@ -39,9 +39,12 @@ jobs:
39
- name: Lint
40
run: npm run lint:check
41
- name: Check for changes to docs
42
- run: |
43
- npm run mkdocs
44
- git diff --exit-code
+ run: npm run mkdocs
+ - name: Auto commit docs changes if any
+ uses: stefanzweifel/git-auto-commit-action@v4
45
+ with:
46
+ commit_message: Apply docs changes
47
+ file_pattern: docs/api/*.md
48
- name: Genrate test coverage report
49
run: npm run coveralls-after
50
- name: Update coveralls
.husky/pre-commit
@@ -10,6 +10,3 @@ npm test;
10
# Build
11
npm run build
12
13
-# Check changes in docs
14
-npm run mkdocs;
15
-git diff --exit-code
0 commit comments