-
Notifications
You must be signed in to change notification settings - Fork 0
45 lines (36 loc) · 882 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
concurrency:
group:
${{ github.workflow }}-${{ github.event_name == 'pull_request_target' &&
github.head_ref || github.ref }}
cancel-in-progress: true
env:
NODE_OPTIONS: "--max_old_space_size=4096"
on:
pull_request:
branches:
- main
types: [opened, synchronize]
push:
branches:
- main
jobs:
lint:
name: Linting (cspell, markdownlint, eslint)
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
with:
submodules: true
token: ${{ secrets.PAT_TOKEN }}
- name: Install step
uses: ./.github/actions/setup
- name: ✂️ Run knip
run: pnpm run knip
- name: Run cspell
run: pnpm run lint:spell
- name: Run markdownlint
run: pnpm run lint:md
- name: Run eslint
run: pnpm run lint:ci