We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 60723a6 commit cc0fa6fCopy full SHA for cc0fa6f
.github/workflows/lint.yml
@@ -0,0 +1,32 @@
1
+name: Lint
2
+
3
+on:
4
+ push:
5
+ branches: [main, master]
6
+ pull_request:
7
8
9
+jobs:
10
+ lint:
11
+ runs-on: ubuntu-latest
12
13
+ steps:
14
+ - name: Checkout
15
+ uses: actions/checkout@v4
16
17
+ - name: Install pnpm
18
+ uses: pnpm/action-setup@v4
19
20
+ - name: Install Node.js
21
+ uses: actions/setup-node@v4
22
+ with:
23
+ node-version: 22
24
+ cache: "pnpm"
25
26
+ - name: Install dependencies
27
+ run: pnpm install --frozen-lockfile
28
+ env:
29
+ HUSKY: 0
30
31
+ - name: Run lint
32
+ run: pnpm lint
0 commit comments