Skip to content
Snippets Groups Projects
Commit 6e715cde authored by Fredrik Fonn Hansen's avatar Fredrik Fonn Hansen :8ball:
Browse files

Add basic pipeline

parent 86018b46
No related branches found
No related tags found
1 merge request!5Add basic pipeline
stages:
- backend build
- frontend build
- backend test
- frontend test
cache:
paths:
- .m2/repository/
- target/
- .yarn
Prettier check:
image: node:16.3.0
stage: backend test
needs: []
script:
- cd backend
- yarn
- yarn prettier --check .
retry: 1
Backend build:
image: node:16.3.0
stage: backend test
needs: []
script:
- cd backend
- yarn
- yarn tsc
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment