Skip to content

Commit d88c657

Browse files
vveerrggclaude
andcommitted
ci: add GitHub Actions workflow for lint, build, and audit
Triggers on push/PR to main. Runs npm ci, build:all:prod, and npm audit on Node 20. No test step yet (test script is placeholder). Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
1 parent 2d3e965 commit d88c657

1 file changed

Lines changed: 18 additions & 0 deletions

File tree

.github/workflows/ci.yml

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,18 @@
1+
name: CI
2+
on:
3+
push:
4+
branches: [main]
5+
pull_request:
6+
branches: [main]
7+
jobs:
8+
build:
9+
runs-on: ubuntu-latest
10+
steps:
11+
- uses: actions/checkout@v4
12+
- uses: actions/setup-node@v4
13+
with:
14+
node-version: 20
15+
cache: 'npm'
16+
- run: npm ci
17+
- run: npm run build:all:prod
18+
- run: npm audit

0 commit comments

Comments
 (0)