-
Notifications
You must be signed in to change notification settings - Fork 0
41 lines (31 loc) · 859 Bytes
/
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
name: Frontend lint
on: [ push, pull_request ]
jobs:
lint:
runs-on: ubuntu-latest
defaults:
run:
working-directory: src
strategy:
matrix:
node-version: [ 20.x ]
pnpm-version: [ 9.12 ]
steps:
- uses: actions/checkout@v4
- name: Install pnpm
uses: pnpm/action-setup@v4
with:
version: ${{ matrix.pnpm-version }}
run_install: false
- name: Install Node ${{ matrix.node-version }}
uses: actions/setup-node@v4
with:
node-version: ${{ matrix.node-version }}
cache: "pnpm"
cache-dependency-path: ./src/pnpm-lock.yaml
- name: Install dependencies
run: pnpm install --frozen-lockfile
- name: Run ESLint
run: pnpm lint
- name: Run Prettier
run: pnpm prettier-check