Compare commits

...

1 Commits

Author SHA1 Message Date
morbalint beb2b672a9 add simple ci pipeline 2026-06-21 18:07:45 +02:00
+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