-
-
Notifications
You must be signed in to change notification settings - Fork 282
102 lines (95 loc) · 2.58 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
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
name: CI - Push
'on':
push:
branches:
- main
jobs:
lint:
name: Run Linters
runs-on: ubuntu-latest
steps:
- name: Check out Git repository
uses: actions/checkout@v4
- uses: pnpm/action-setup@v4
with:
version: 9.15.0
- uses: actions/setup-node@v4
with:
node-version: '22'
cache: 'pnpm'
- name: Install dependencies
run: pnpm install --frozen-lockfile
- id: yamllint
name: Yamllint
uses: reviewdog/action-yamllint@v1
with:
github_token: ${{ secrets.github_token }}
reporter: github-check
yamllint_flags: '.'
fail_level: error
filter_mode: nofilter
- if: always()
id: eslint
name: ESLint
uses: reviewdog/[email protected]
with:
github_token: ${{ secrets.github_token }}
reporter: github-check
eslint_flags: --ext js,jsx .
fail_level: error
filter_mode: nofilter
workdir: website
prettier:
name: Prettier - Enforce code style
runs-on: ubuntu-latest
steps:
- name: Check out Git repository
uses: actions/checkout@v4
- uses: pnpm/action-setup@v4
with:
version: 9.15.0
- uses: actions/setup-node@v4
with:
node-version: '22'
cache: 'pnpm'
- name: Install dependencies
run: pnpm install --frozen-lockfile
- id: prettier
name: Prettier
uses: creyD/[email protected]
with:
dry: true
prettier_options: --write .
env:
GITHUB_TOKEN: ${{ secrets.github_token }}
gh-pages:
name: Deploy to GH Pages
needs:
- lint
- prettier
runs-on: ubuntu-latest
steps:
- name: Check out Git repository
uses: actions/checkout@v4
- uses: pnpm/action-setup@v4
with:
version: 9.15.0
- uses: actions/setup-node@v4
with:
node-version: '22'
cache: 'pnpm'
- name: Install dependencies
run: pnpm install --frozen-lockfile
- name: Website - Build
run: cd website && pnpm build
- name: Create .nojekyll file
run: touch website/build/.nojekyll
- name: Deploy to GitHub Pages
uses: s0/[email protected]
env:
REPO: self
BRANCH: gh-pages
FOLDER: website/build
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
MESSAGE: '🤖 Deploy static site for change: {msg}'
SKIP_EMPTY_COMMITS: true