Author SHA1 Message Date
zaphostingpreview ab0e68c1e9 Add CI workflow
CI / build (push) Waiting to run
2026-09-16 10:52:14 +00:00
+17
View File
@@ -0,0 +1,17 @@
name: CI
on:
push:
branches: [main]
pull_request:
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Install dependencies
run: npm ci
- name: Run tests
run: npm test
- name: Build
run: npm run build