add simple ci pipeline

This commit is contained in:
2026-06-21 18:07:45 +02:00
parent a6ecbfe927
commit beb2b672a9
+14
View File
@@ -0,0 +1,14 @@
when:
- event: [push, pull_request, manual]
branch: [main]
steps:
unit-test-and-lint:
image: node:24
commands:
- corepack enable
- corepack prepare yarn@1.22.22 --activate
- cd frontend
- yarn install --frozen-lockfile
- yarn run test
- yarn run lint