Add README, .gitignore, CI workflow, and syntax checks
CI / test (push) Has been cancelled

Co-Authored-By: Claude Opus 4.7 <noreply@anthropic.com>
This commit is contained in:
2026-05-05 10:52:30 +00:00
parent 76bad46d09
commit 2404135205
5 changed files with 143 additions and 1 deletions
+25
View File
@@ -0,0 +1,25 @@
name: CI
on:
push:
branches: [main]
pull_request:
branches: [main]
jobs:
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version: 22
- run: npm ci
- name: Syntax and structure checks
run: npm test
- name: Build
run: npm run build