Skip to content
Snippets Groups Projects
Commit 5e93333f authored by Andreas Kluge Svendsrud's avatar Andreas Kluge Svendsrud
Browse files

Merge branch 'bug/fix-pipeline-bug' into 'main'

Bug/fix pipeline bug

See merge request !41
parents 948147db c510bd64
No related branches found
No related tags found
1 merge request!41Bug/fix pipeline bug
Pipeline #279488 failed
...@@ -2,7 +2,6 @@ image: node:alpine # Much smaller than other variants, faster and more resource ...@@ -2,7 +2,6 @@ image: node:alpine # Much smaller than other variants, faster and more resource
stages: stages:
- install_dependencies - install_dependencies
- lint
- build_project - build_project
cache: cache:
...@@ -13,16 +12,9 @@ cache: ...@@ -13,16 +12,9 @@ cache:
install_dependencies: install_dependencies:
stage: install_dependencies stage: install_dependencies
script: script:
- npm install - npm ci
lint:
stage: lint
script:
- npm run lint
allow_failure: true
build_project: build_project:
stage: build_project stage: build_project
script: script:
- npm run build - npm run build
This diff is collapsed.
File moved
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