Skip to content
Snippets Groups Projects
Commit d68759c6 authored by Jakob Grønhaug's avatar Jakob Grønhaug
Browse files

Merge branch 'main' of gitlab.stud.idi.ntnu.no:idatt2106-scrum-team-02/frontend

parents 9334af62 251909ca
No related branches found
No related tags found
1 merge request!2dependency lock
image: node:latest
stages: # List of stages for jobs, and their order of execution
- build
- test
build-job: # This job runs in the build stage, which runs first.
stage: build
script:
- npm ci
unit-test-job: # This job runs in the test stage.
stage: test # It only starts when the job in the build stage completes successfully.
script:
- npm run test:unit
e2e-test-job: # This job runs in the test stage.
stage: test # It only starts when the job in the build stage completes successfully.
script:
- npm run test:e2e
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