-
Notifications
You must be signed in to change notification settings - Fork 18
55 lines (45 loc) · 1.41 KB
/
pr-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
53
54
55
name: PR Lint
on:
push:
pull_request_target:
paths-ignore:
- 'docs/**'
# Ensures that only one deploy task per branch/environment will run at a time.
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
jobs:
lint:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: pnpm/action-setup@v4
- name: Setup Node
uses: actions/setup-node@v4
with:
node-version-file: '.nvmrc'
cache: pnpm
- name: Cache ESLint
uses: actions/cache@v4
env:
cache-name: cache-eslint
with:
path: ~/.eslintcache
key: ${{ runner.os }}-${{ env.cache-name }}-${{ hashFiles('.eslintrc') }}
restore-keys: |
${{ runner.os }}-${{ env.cache-name }}-${{ hashFiles('.eslintrc') }}
${{ runner.os }}-${{ env.cache-name }}-
- name: Install
run: pnpm install --frozen-lockfile --prefer-offline
- name: Prettier
run: pnpm lint:prettier
- name: Save ESLint Report JSON
run: pnpm lint-report:cached
continue-on-error: true
- name: Annotate ESLint Results
if: github.event_name == 'pull_request_target'
uses: ataylorme/eslint-annotate-action@v3
with:
GITHUB_TOKEN: '${{ secrets.GITHUB_TOKEN }}'
report-json: 'eslint.results.json'
fail-on-warning: true