Skip to content

Commit d70715c

Browse files
committed
Add basic CI workflow
1 parent cdfae80 commit d70715c

1 file changed

Lines changed: 27 additions & 0 deletions

File tree

.github/workflows/ci.yml

Lines changed: 27 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,27 @@
1+
name: CI
2+
3+
on:
4+
push:
5+
branches: [main]
6+
pull_request:
7+
branches: [main]
8+
9+
jobs:
10+
lint-and-build:
11+
runs-on: ubuntu-latest
12+
13+
steps:
14+
- uses: actions/checkout@v6
15+
16+
- uses: actions/setup-node@v5
17+
with:
18+
node-version: 22
19+
cache: npm
20+
21+
- run: npm ci
22+
23+
- name: Lint
24+
run: npm run lint
25+
26+
- name: Type check & build
27+
run: npm run build

0 commit comments

Comments
 (0)