-
-
Notifications
You must be signed in to change notification settings - Fork 234
68 lines (54 loc) · 1.71 KB
/
ci-cd.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
66
67
68
name: Continuous Integration and Deployment
on:
push:
branches: [ master ]
pull_request:
branches: [ master ]
jobs:
# Combined CI and CD Jobs to reduce redundancy
build-and-deploy:
runs-on: ubuntu-latest
# Sets permissions for the GITHUB_TOKEN
permissions:
contents: read
pages: write
id-token: write
steps:
# Checkout code just once
- uses: actions/checkout@v3
# Setup Node.js only once
- name: Setup Node.js
uses: actions/setup-node@v3
with:
node-version: 18
cache: 'npm'
# Install dependencies only once
- name: Install Dependencies
run: npm ci
# Lint, Test, Build, and Generate Documentation
- name: Lint
run: npm run lint
- name: Test
run: npm run test
- name: Build
run: npm run build
- name: Generate Documentation
run: npm run docs:code
env:
NODE_OPTIONS: --max-old-space-size=4096
NO_COLOR: true
# Conditional Deployment steps
- name: Setup Pages
if: github.event_name == 'push' && github.ref == 'refs/heads/master'
uses: actions/configure-pages@v3
- name: Build with VitePress
if: github.event_name == 'push' && github.ref == 'refs/heads/master'
run: npm run docs:deploy-github-pages
- name: Upload artifact
if: github.event_name == 'push' && github.ref == 'refs/heads/master'
uses: actions/upload-pages-artifact@v2
with:
path: docs/.vitepress/dist
- name: Deploy to GitHub Pages
if: github.event_name == 'push' && github.ref == 'refs/heads/master'
uses: actions/deploy-pages@v2