feat: initial commit

This commit is contained in:
2025-05-30 06:37:19 +01:00
commit 51e7c56a87
29 changed files with 5988 additions and 0 deletions

49
.gitlab-ci.yml Normal file
View File

@@ -0,0 +1,49 @@
default:
image: node:lts-alpine
install_deps:
needs: []
script:
- npm ci
cache:
- key:
files:
- package-lock.json
paths:
- node_modules/
artifacts:
paths:
- node_modules/
check_types:
needs: [install_deps]
dependencies: [install_deps]
script:
- npm run check
check_style:
needs: [install_deps]
dependencies: [install_deps]
script:
- npm run lint
test_unit:
needs: [check_types, check_style]
dependencies: [install_deps]
script:
- npm run test:unit
test_e2e:
needs: [check_types, check_style]
dependencies: [install_deps]
script:
- npm run test:e2e
build:
needs: [test_unit, test_e2e]
dependencies: [install_deps]
script:
- npm run build
artifacts:
paths:
- build/