We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents fb9c662 + edd8c66 commit 36b801fCopy full SHA for 36b801f
1 file changed
.github/workflows/update-docs.yml
@@ -0,0 +1,38 @@
1
+# @format
2
+
3
+name: Update Documentation
4
+on:
5
+ push:
6
+ branches:
7
+ - main
8
9
+env:
10
+ FORCE_COLOR: 2
11
12
+jobs:
13
+ run:
14
+ name: Generate Documentation README
15
+ runs-on: ubuntu-latest
16
+ steps:
17
+ - name: Checkout repo
18
+ uses: actions/checkout@v3
19
20
+ - name: Set up Node.js
21
+ uses: actions/setup-node@v3
22
+ with:
23
+ node-version: 16
24
+ cache: 'npm'
25
26
+ - name: Install dependencies
27
+ run: npm install
28
29
+ - name: Update documentation
30
+ run: npm run docs
31
32
+ - name: Commit changes
33
+ uses: EndBug/add-and-commit@v9
34
35
+ author_name: GitHub Actions
36
+ author_email: actions@github.com
37
+ message: '📝 Generated Documentation'
38
+ add: '.'
0 commit comments