Add CI workflow for Node.js project

This commit is contained in:
Martin Staiger 2026-04-02 18:20:33 +02:00 committed by GitHub
parent e2f820e3ef
commit f2a368d6d6
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

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

@ -0,0 +1,16 @@
name: CI
on:
push:
branches: [ main ]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/setup-node@v3
with:
node-version: '22'
- run: npm ci
- run: npm run build