Skip to content
Snippets Groups Projects
Commit ffb2f9d5 authored by Lars Mikkel Lødeng Nilsen's avatar Lars Mikkel Lødeng Nilsen
Browse files

Modified the pipeline to try to get it to work

parent 9b8b0116
No related branches found
No related tags found
3 merge requests!66Final merge,!4Pipeline fix,!3Pipeline fix
Pipeline #272699 failed
image: node:latest
stages:
- setup
- install
- lint_and_format
- build
- test
- security_scan
default:
image: node:20
cache:
paths:
- node_modules
install:
stage: install
script:
- npm run build
artifacts:
paths:
- node_modules/
- dist/
before_script:
- npm install
......@@ -21,11 +33,10 @@ lint-code:
script:
- npm run lint
build-and-test:
type-check:
stage: build
script:
- npm run type-check
- npm run build
unit-tests:
stage: test
......
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