Skip to content

Commit 908a952

Browse files
ampledataclaude
andcommitted
Add CI: eslint + tsc + vitest
Co-Authored-By: Claude Fable 5 <noreply@anthropic.com> Claude-Session: https://claude.ai/code/session_01DVibvSyvPsUXRXRYaFsWjY
1 parent a5c42b5 commit 908a952

1 file changed

Lines changed: 21 additions & 0 deletions

File tree

.github/workflows/ci.yml

Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
name: CI
2+
3+
on:
4+
push:
5+
branches: [main]
6+
tags: ['v*']
7+
pull_request:
8+
9+
jobs:
10+
test:
11+
runs-on: ubuntu-24.04
12+
steps:
13+
- uses: actions/checkout@v4
14+
- uses: actions/setup-node@v4
15+
with:
16+
node-version: 20
17+
cache: npm
18+
- run: npm ci
19+
- run: npx eslint src/
20+
- run: npx tsc --noEmit
21+
- run: npx vitest run

0 commit comments

Comments
 (0)