-
-
Notifications
You must be signed in to change notification settings - Fork 24
33 lines (27 loc) · 652 Bytes
/
lint.yml
File metadata and controls
33 lines (27 loc) · 652 Bytes
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
name: Lint
on:
push:
branches:
- main
pull_request:
merge_group:
workflow_dispatch:
jobs:
run:
name: Run
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v6
with:
submodules: recursive
- name: Install pnpm
uses: pnpm/action-setup@41ff72655975bd51cab0327fa583b6e92b6d3061 # v4.2.0
- name: Setup Node.js
uses: actions/setup-node@2028fbc5c25fe9cf00d9f06a71cc4710d4507903 # v6.0.0
with:
node-version: 24.11.0
cache: "pnpm"
- name: Install dependencies
run: pnpm install
- name: Run linter
run: pnpm lint