There was an error while loading. Please reload this page.
2 parents 721d6d0 + acaaaad commit d13e2e4Copy full SHA for d13e2e4
1 file changed
.github/workflows/main.yml
@@ -0,0 +1,36 @@
1
+name: CI
2
+
3
+on:
4
+ push:
5
+ branches:
6
+ - main
7
+ pull_request:
8
9
10
11
+jobs:
12
+ build:
13
+ name: Build and Lint
14
+ runs-on: ubuntu-latest
15
16
+ steps:
17
+ - name: Checkout repository
18
+ uses: actions/checkout@v4
19
20
+ - name: Set up Node.js
21
+ uses: actions/setup-node@v6
22
+ with:
23
+ node-version: '24'
24
+ cache: 'yarn'
25
26
+ - name: Install dependencies
27
+ run: yarn install --frozen-lockfile
28
29
+ - name: Lint
30
+ run: yarn lint
31
32
+ - name: Type Check
33
+ run: yarn type-check
34
35
+ - name: Build
36
+ run: yarn build-only
0 commit comments