Skip to content

Commit acaaaad

Browse files
committed
Added CI
1 parent 721d6d0 commit acaaaad

1 file changed

Lines changed: 36 additions & 0 deletions

File tree

.github/workflows/main.yml

Lines changed: 36 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,36 @@
1+
name: CI
2+
3+
on:
4+
push:
5+
branches:
6+
- main
7+
pull_request:
8+
branches:
9+
- main
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

Comments
 (0)