we need a prepare state because some jobs havent an node env.
use node14 anyways
This commit is contained in:
parent
60b14b3c0d
commit
e11f021efe
@ -1,19 +1,17 @@
|
||||
image: node:latest
|
||||
image: node:14
|
||||
|
||||
stages:
|
||||
- prepare
|
||||
- build
|
||||
- test
|
||||
- packaging
|
||||
- deploy
|
||||
|
||||
# Cache modules in between jobs
|
||||
cache:
|
||||
key: ${CI_COMMIT_REF_SLUG}
|
||||
paths:
|
||||
- .npm/
|
||||
|
||||
before_script:
|
||||
- npm ci --cache .npm --prefer-offline
|
||||
- node_modules/
|
||||
|
||||
include:
|
||||
- template: Code-Quality.gitlab-ci.yml
|
||||
@ -21,6 +19,11 @@ include:
|
||||
variables:
|
||||
SAST_DISABLE_DIND: "true"
|
||||
|
||||
Node_dependencies:
|
||||
stage: prepare
|
||||
script:
|
||||
- npm ci --cache .npm --prefer-offline
|
||||
|
||||
Minimize:
|
||||
stage: build
|
||||
script:
|
||||
@ -29,6 +32,7 @@ Minimize:
|
||||
expire_in: 7 days
|
||||
paths:
|
||||
- build/
|
||||
needs: ["Node_dependencies"]
|
||||
|
||||
Frontend_Tests:
|
||||
stage: test
|
||||
@ -38,6 +42,7 @@ Frontend_Tests:
|
||||
reports:
|
||||
junit:
|
||||
- ./junit.xml
|
||||
needs: ["Node_dependencies"]
|
||||
|
||||
code_quality:
|
||||
tags:
|
||||
|
Loading…
Reference in New Issue
Block a user