-
Notifications
You must be signed in to change notification settings - Fork 0
35 lines (31 loc) · 910 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
---
name: "ci"
on:
pull_request:
branches:
- "main"
push:
branches:
- "main"
permissions: "read-all"
jobs:
ci:
runs-on: "ubuntu-latest"
steps:
- uses: "actions/checkout@0ad4b8fadaa221de15dcec353f45205ec38ea70b"
with:
submodules: true
- uses: "pnpm/action-setup@fe02b34f77f8bc703788d5817da081398fad5dd2"
with:
version: "latest"
- uses: "actions/setup-node@60edb5dd545a775178f52524783378180af0d1f8"
with:
node-version-file: ".nvmrc"
cache: "pnpm"
- uses: "peaceiris/actions-hugo@v3"
with:
hugo-version: "0.105.0"
extended: true
- run: "make install"
- run: "make lint"
- run: "hugo --minify"