-
Notifications
You must be signed in to change notification settings - Fork 13
65 lines (53 loc) · 1.52 KB
/
main.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
65
# .github/workflows/main.yml
name: GitHub Pages
on:
push:
branches:
- master
pull_request:
branches:
- master
workflow_dispatch:
jobs:
build:
runs-on: ubuntu-latest
name: Build and Test
steps:
- uses: actions/checkout@v2
- uses: actions/setup-node@v1
with:
node-version: '18.x'
- name: Cache Node.js modules
uses: actions/cache@v2
with:
# npm cache files are stored in `~/.npm` on Linux/macOS
path: ~/.npm
key: ${{ runner.OS }}-node-${{ hashFiles('**/package-lock.json') }}
restore-keys: |
${{ runner.OS }}-node-
${{ runner.OS }}-
- name: Install dependencies
run: npm ci
- name: Build
env:
NODE_OPTIONS: "--max-old-space-size=4096"
run: npm run build
- name: Build Offline Bundle
env:
NODE_OPTIONS: "--max-old-space-size=4096"
run: npm run build:offline
- name: Broken Link Checker Action
uses: gaurav-nelson/github-action-markdown-link-check@v1
with:
use-verbose-mode: 'yes'
folder-path: 'docs'
- name: Deploy
if: github.event_name != 'pull_request'
uses: peaceiris/[email protected]
with:
github_token: ${{ secrets.GITHUB_TOKEN }}
publish_dir: build
cname: 'docs.128technology.com'
- name: Event
if: github.event_name == 'workflow_dispatch'
run: echo "Triggered by Workflow Action"