We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ed6e9a8 commit faadeddCopy full SHA for faadedd
.github/workflows/lint-check.yml
@@ -0,0 +1,36 @@
1
+name: Lint check
2
+
3
+on:
4
+ pull_request:
5
+ branches:
6
+ - main
7
8
+jobs:
9
+ build:
10
+ runs-on: ubuntu-latest
11
+ steps:
12
+ - name: Checkout
13
+ uses: actions/checkout@v4
14
+ with:
15
+ fetch-depth: 0
16
17
+ - name: Setup pnpm
18
+ uses: pnpm/action-setup@v4
19
20
+ - name: Setup Node.js
21
+ uses: actions/setup-node@v4
22
23
+ node-version: '22'
24
+ cache: pnpm
25
26
+ - name: Setup Pages
27
+ uses: actions/configure-pages@v5
28
29
+ - name: Install dependencies
30
+ run: pnpm install
31
32
+ - name: Run lint check
33
+ run: npm run lint:eslint
34
35
+ - name: Run type check
36
+ run: npm run type:check
0 commit comments