-
Notifications
You must be signed in to change notification settings - Fork 25
52 lines (48 loc) · 1.21 KB
/
lint.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
name: Lint
on:
pull_request:
branches:
- main
jobs:
changed_files:
runs-on: ubuntu-latest
name: Lint changed MDX files
steps:
- uses: actions/checkout@v4
with:
fetch-depth: 0
- uses: pnpm/action-setup@v3
with:
version: 8
- uses: actions/setup-node@v4
with:
node-version: 20
cache: 'pnpm'
- run: pnpm install
- name: Get all changed MDX files
id: changed-mdx-files
uses: tj-actions/changed-files@v42
with:
files: |
**.mdx
- name: Lint all changed MDX files
if: steps.changed-mdx-files.outputs.any_changed == 'true'
env:
ALL_CHANGED_FILES: ${{ steps.changed-mdx-files.outputs.all_changed_files }}
run: |
pnpm eslint $ALL_CHANGED_FILES
code:
runs-on: ubuntu-latest
name: Lint code
steps:
- uses: actions/checkout@v4
- uses: pnpm/action-setup@v3
with:
version: 8
- uses: actions/setup-node@v4
with:
node-version: 20
cache: 'pnpm'
- run: pnpm install
- run: pnpm typecheck
- run: pnpm eslint . --ignore-pattern '**/*.mdx'