We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 484351e commit 0810803Copy full SHA for 0810803
.github/workflows/ci.yml
@@ -0,0 +1,36 @@
1
+name: CI
2
+
3
+on:
4
+ push:
5
+ branches:
6
+ - master
7
+ workflow_dispatch:
8
9
+jobs:
10
+ lint-and-typecheck:
11
+ runs-on: ubuntu-latest
12
+ name: Lint & Type Check
13
14
+ steps:
15
+ - name: Checkout repository
16
+ uses: actions/checkout@v4
17
18
+ - name: Setup pnpm
19
+ uses: pnpm/action-setup@v4
20
+ with:
21
+ version: 10.28.0
22
23
+ - name: Setup Node.js
24
+ uses: actions/setup-node@v4
25
26
+ node-version: 24.13.0
27
+ cache: pnpm
28
29
+ - name: Install dependencies
30
+ run: pnpm install --frozen-lockfile
31
32
+ - name: Run ESLint
33
+ run: pnpm lint
34
35
+ - name: Run Type Check
36
+ run: pnpm type-check
.github/workflows/push.yml
0 commit comments