Skip to content
This repository was archived by the owner on Apr 5, 2024. It is now read-only.

Commit adfa536

Browse files
authored
Create documentation.yml
1 parent 6512f59 commit adfa536

File tree

1 file changed

+28
-0
lines changed

1 file changed

+28
-0
lines changed
Lines changed: 28 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,28 @@
1+
name: Documentation
2+
3+
on:
4+
push:
5+
branches: [ master ]
6+
paths:
7+
- 'src/**'
8+
9+
jobs:
10+
Generate_Documentation_on_Master_Push:
11+
runs-on: ubuntu-latest
12+
steps:
13+
-
14+
name: Set up Project
15+
uses: actions/checkout@v2
16+
-
17+
name: Set up Node.js environment
18+
uses: actions/setup-node@v2
19+
with:
20+
node-version: 16
21+
cache: 'yarn'
22+
-
23+
name: Checkout frontend
24+
run: |
25+
yarn install --immutable --immutable-cache --check-cache
26+
-
27+
name: Generate Documentation
28+
run: yarn docs

0 commit comments

Comments
 (0)