Skip to content

Commit 2a1d69a

Browse files
davindicodeclaude
andcommitted
Add CI workflow, commit lockfile
GitHub Actions: typecheck + build on push/PR to main Commit pnpm-lock.yaml for reproducible CI builds Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
1 parent 9723112 commit 2a1d69a

3 files changed

Lines changed: 3432 additions & 1 deletion

File tree

.github/workflows/ci.yml

Lines changed: 31 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,31 @@
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@v4
15+
16+
- uses: pnpm/action-setup@v4
17+
with:
18+
version: 10
19+
20+
- uses: actions/setup-node@v4
21+
with:
22+
node-version: 22
23+
cache: pnpm
24+
25+
- run: pnpm install --frozen-lockfile
26+
27+
- name: TypeScript check
28+
run: pnpm run typecheck
29+
30+
- name: Build
31+
run: pnpm run build

.gitignore

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
.DS_Store
22
.env
33
/node_modules/
4-
pnpm-lock.yaml
4+
55

66
# React Router
77
/.react-router/

0 commit comments

Comments
 (0)