-
Notifications
You must be signed in to change notification settings - Fork 3
45 lines (42 loc) · 1.01 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
name: Lint & Typechecking
on:
push:
branches:
- master
- dev
paths-ignore:
- '.github/**'
pull_request:
branches:
- master
- dev
paths-ignore:
- '.github/**'
types: [opened, synchronize, reopened, ready_for_review] # Don't run if draft
# Cancel current running
concurrency:
group: ${{ github.workflow }}-${{ github.ref_name }}
cancel-in-progress: true
jobs:
lint:
name: Lint & Typechecking
if: github.event.pull_request.draft == false
env:
CI: true
NEXT_TELEMETRY_DISABLED: 1
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v4
- name: Install pnpm
uses: pnpm/action-setup@v4
with:
version: 9
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v4
- name: install deps
run: pnpm install
- name: run linter
run: pnpm run lint
- name: run typechecker
run: pnpm run typecheck