-
Notifications
You must be signed in to change notification settings - Fork 0
74 lines (66 loc) · 1.89 KB
/
ci.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
69
70
71
72
73
74
name: CI
on:
push:
branches: [master]
pull_request:
branches: [master]
workflow_dispatch:
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [18.16.x]
steps:
- uses: actions/checkout@v3
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v3
with:
node-version: ${{ matrix.node-version }}
cache: 'npm'
cache-dependency-path: 'packages/**/package-lock.json'
- run: npm i -g [email protected]
- run: npm install --legacy-peer-deps
- run: npm run clean
- run: npm run bootstrap
- run: npm run cs-format
- run: npm run cs-check
- name: Build with Netlify badge
run: npm run build:web
env:
VITE_SHOW_NETLIFY_BADGE: true
NODE_OPTIONS: --max_old_space_size=4096
- if: matrix.node-version == '18.x'
uses: actions/upload-artifact@v3
with:
name: playground
path: packages/playground/dist
- if: matrix.node-version == '18.x'
uses: actions/upload-artifact@v3
with:
name: docs
path: packages/docs/build
deploy_playground_and_docs:
runs-on: ubuntu-latest
if: github.ref == 'refs/heads/master'
name: Deploy playground and docs to GitHub Pages
needs: [build]
steps:
- name: Download built playground
uses: actions/download-artifact@v3
with:
name: playground
path: dist
- name: Download built docs
uses: actions/download-artifact@v3
with:
name: docs
path: dist/docs
- name: Deploy playground + docs to GitHub Pages
uses: crazy-max/[email protected]
with:
keep_history: true
target_branch: gh-pages
build_dir: dist
env:
GITHUB_TOKEN: ${{ secrets.TOKEN }}