Skip to content
Snippets Groups Projects
Commit 26b83bf4 authored by Victor Löfgren's avatar Victor Löfgren
Browse files

fix: Change node:12 to node

parent 1e7aa5bf
No related branches found
No related tags found
No related merge requests found
Pipeline #40051 passed
client:setup: client:setup:
image: node:10 image: node
stage: setup stage: setup
only: only:
refs: refs:
...@@ -9,14 +9,14 @@ client:setup: ...@@ -9,14 +9,14 @@ client:setup:
- cd client - cd client
- npm install - npm install
artifacts: artifacts:
name: "artifacts" name: 'artifacts'
untracked: true untracked: true
expire_in: 15 mins expire_in: 15 mins
paths: paths:
- client/.npm/ - client/.npm/
- client/node_modules/ - client/node_modules/
cache: cache:
key: "$CI_COMMIT_REF_SLUG" key: '$CI_COMMIT_REF_SLUG'
paths: paths:
- client/.npm/ - client/.npm/
- client/node_modules/ - client/node_modules/
...@@ -24,7 +24,7 @@ client:setup: ...@@ -24,7 +24,7 @@ client:setup:
client:linting: client:linting:
image: node:10 image: node:10
stage: test stage: test
needs: ["client:setup"] needs: ['client:setup']
allow_failure: true allow_failure: true
only: only:
refs: refs:
...@@ -39,7 +39,7 @@ client:linting: ...@@ -39,7 +39,7 @@ client:linting:
client:test: client:test:
image: node:10 image: node:10
stage: test stage: test
needs: ["client:setup"] needs: ['client:setup']
only: only:
refs: refs:
- dev - dev
...@@ -56,7 +56,7 @@ client:test: ...@@ -56,7 +56,7 @@ client:test:
client:report: client:report:
image: python image: python
stage: report stage: report
needs: ["client:test"] needs: ['client:test']
only: only:
refs: refs:
- merge_requests - merge_requests
......
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