-
Notifications
You must be signed in to change notification settings - Fork 0
64 lines (63 loc) · 1.9 KB
/
docs.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
name: Documentation generation
on:
push:
branches:
- main
jobs:
# build-and-test:
# name: Build and test project before generating documentation
# runs-on: ubuntu-latest
# steps:
# - uses: actions/checkout@v2
# - name: Use Node.js LTS
# uses: actions/setup-node@v2
# with:
# node-version: lts/*
# - name: Cache node modules
# uses: actions/cache@v2
# env:
# cache-name: cache-node-modules
# with:
# path: ~/.npm
# key: ${{ runner.os }}-build-${{ env.cache-name }}-${{ hashFiles('**/package-lock.json') }}
# restore-keys: |
# ${{ runner.os }}-build-${{ env.cache-name }}-
# ${{ runner.os }}-build-
# ${{ runner.os }}-
# - name: Install dependencies
# run: npm ci --prefer-offline
# - name: Build project
# run: npm run build
# - name: Lint project code
# run: npm run lint
# build-docs:
# name: Build and deploy documentation
# runs-on: ubuntu-latest
# needs: [build-and-test]
# steps:
# - uses: actions/checkout@v2
# - name: Use Node.js LTS
# uses: actions/setup-node@v2
# with:
# node-version: lts/*
# - name: Cache node modules
# uses: actions/cache@v2
# env:
# cache-name: cache-node-modules
# with:
# path: ~/.npm
# key: ${{ runner.os }}-build-${{ env.cache-name }}-${{ hashFiles('**/package-lock.json') }}
# restore-keys: |
# ${{ runner.os }}-build-${{ env.cache-name }}-
# ${{ runner.os }}-build-
# ${{ runner.os }}-
# - name: Install dependencies
# run: npm ci --prefer-offline
# - name: Generate documentation
# run: npm run docs
# - name: Deploy to GitHub Pages
# uses: peaceiris/actions-gh-pages@v3
# with:
# github_token: ${{ secrets.GITHUB_TOKEN }}
# publish_dir: ./docs
# publish_branch: docs