forked from taiyme/misskey
-
Notifications
You must be signed in to change notification settings - Fork 0
175 lines (153 loc) · 4.19 KB
/
lint.yaml
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
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
name: Lint
on:
push:
branches:
- stream
paths:
- .github/workflows/lint.yaml
- packages/**/*
pull_request_target:
branches:
- stream
paths:
- packages/**/*
permissions:
contents: read
jobs:
pre-checkout:
name: Pre checkout
uses: ./.github/workflows/pre-checkout.yaml
run-pnpm-install:
name: Run pnpm install
runs-on: ubuntu-22.04
needs:
- pre-checkout
steps:
- name: Checkout
uses: actions/[email protected]
with:
persist-credentials: false
ref: ${{ needs.pre-checkout.outputs.sha }}
fetch-depth: 1
submodules: true
- name: Enable corepack
run: |
corepack enable
- name: Setup Node.js
uses: actions/[email protected]
with:
node-version-file: .node-version
cache: pnpm
- name: Install dependencies
run: |
pnpm i --frozen-lockfile
lint:
name: Lint
runs-on: ubuntu-22.04
needs:
- pre-checkout
- run-pnpm-install
strategy:
fail-fast: false
matrix:
workspace:
- backend
- frontend
- frontend-embed
- frontend-shared
- misskey-bubble-game
- misskey-js
- misskey-reversi
- sw
env:
eslint-cache-version: v1
eslint-cache-path: ${{ github.workspace }}/node_modules/.cache/eslint-${{ matrix.workspace }}
steps:
- name: Checkout
uses: actions/[email protected]
with:
persist-credentials: false
ref: ${{ needs.pre-checkout.outputs.sha }}
fetch-depth: 1
submodules: true
- name: Enable corepack
run: |
corepack enable
- name: Setup Node.js
uses: actions/[email protected]
with:
node-version-file: .node-version
cache: pnpm
- name: Install dependencies
run: |
pnpm i --frozen-lockfile
- name: Restore eslint cache
uses: actions/[email protected]
with:
path: ${{ env.eslint-cache-path }}
key: eslint-${{ env.eslint-cache-version }}-${{ matrix.workspace }}-${{ hashFiles('**/pnpm-lock.yaml') }}-${{ needs.pre-checkout.outputs.sha }}
restore-keys: eslint-${{ env.eslint-cache-version }}-${{ matrix.workspace }}-${{ hashFiles('**/pnpm-lock.yaml') }}-
- name: Run eslint
run: |
pnpm --filter ${{ matrix.workspace }} run eslint --cache --cache-location ${{ env.eslint-cache-path }} --cache-strategy content
typecheck:
name: Typecheck
runs-on: ubuntu-22.04
needs:
- pre-checkout
- run-pnpm-install
strategy:
fail-fast: false
matrix:
workspace:
- backend
- misskey-js
- sw
steps:
- name: Checkout
uses: actions/[email protected]
with:
persist-credentials: false
ref: ${{ needs.pre-checkout.outputs.sha }}
fetch-depth: 1
submodules: true
- name: Enable corepack
run: |
corepack enable
- name: Setup Node.js
uses: actions/[email protected]
with:
node-version-file: .node-version
cache: pnpm
- name: Install dependencies
run: |
pnpm i --frozen-lockfile
- name: Build (misskey-js)
if: matrix.workspace == 'backend' || matrix.workspace == 'sw'
run: |
pnpm --filter misskey-js run build
- name: Build (misskey-reversi)
if: matrix.workspace == 'backend'
run: |
pnpm --filter misskey-reversi run build
- name: Run typecheck
run: |
pnpm --filter ${{ matrix.workspace }} run typecheck
status-checks:
name: status-checks:lint # required status checks
runs-on: ubuntu-22.04
if: always()
needs:
- lint
- typecheck
steps:
- name: Check needs results
env:
needs_result: ${{ toJSON(needs.*.result) }}
run: |
results="$(jq -r '.[]' <<< "$needs_result")"
echo "$results" | while read -r line; do
if [[ "$line" != "success" ]]; then
exit 1
fi
done