add simple ci pipeline
ci/woodpecker/pr/woodpecker Pipeline was successful
CI / unit-test-and-lint (pull_request) Has been cancelled
CI / build-fe (pull_request) Has been cancelled
CI / build-e2e (pull_request) Has been cancelled
CI / run-e2e (pull_request) Has been cancelled

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