add woodpecker ci pipeline (#1)
ci/woodpecker/manual/build-frontend Pipeline was successful
ci/woodpecker/manual/e2e Pipeline failed
ci/woodpecker/manual/unit-lint Pipeline was successful

Reviewed-on: #1
Co-authored-by: morbalint <balint@morasz.hu>
Co-committed-by: morbalint <balint@morasz.hu>
This commit was merged in pull request #1.
This commit is contained in:
2026-06-21 18:32:03 +00:00
committed by Balint Morasz
parent a6ecbfe927
commit effcdac533
3 changed files with 101 additions and 0 deletions
+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