-
Notifications
You must be signed in to change notification settings - Fork 16
45 lines (36 loc) Β· 1010 Bytes
/
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
name: ci
on:
push:
branches:
- docs/src
jobs:
ci:
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [ubuntu-latest]
node: [18]
steps:
- name: Checkout π
uses: actions/checkout@v3
- name: Setup node env π
uses: actions/setup-node@v3
with:
node-version: ${{ matrix.node }}
check-latest: true
- name: Cache node_modules π¦
uses: actions/cache@v3
with:
path: ~/.npm
key: ${{ runner.os }}-node-${{ hashFiles('**/package-lock.json') }}
restore-keys: |
${{ runner.os }}-node-
- name: Install dependencies π¨π»βπ»
run: npm ci
- name: Build site π
run: npm run build
- name: Deploy π
uses: JamesIves/github-pages-deploy-action@v4
with:
branch: docs/dist # The branch the action should deploy to.
folder: ./public # The folder the action should deploy.