Add .github workflows for CI compatibility
Some checks failed
/ test (push) Failing after 5s

This commit is contained in:
2026-02-03 08:19:55 +00:00
parent 36807dd188
commit b060e5fa4b

25
.github/workflows/ci.yml vendored Normal file
View File

@@ -0,0 +1,25 @@
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: '20'
cache: 'npm'
- name: Install dependencies
run: npm ci
- name: Build
run: npm run build
- name: Run tests
run: npm test