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:
image: node:10
image: node
stage: setup
only:
refs:
......@@ -9,14 +9,14 @@ client:setup:
- cd client
- npm install
artifacts:
name: "artifacts"
name: 'artifacts'
untracked: true
expire_in: 15 mins
paths:
- client/.npm/
- client/node_modules/
cache:
key: "$CI_COMMIT_REF_SLUG"
key: '$CI_COMMIT_REF_SLUG'
paths:
- client/.npm/
- client/node_modules/
......@@ -24,7 +24,7 @@ client:setup:
client:linting:
image: node:10
stage: test
needs: ["client:setup"]
needs: ['client:setup']
allow_failure: true
only:
refs:
......@@ -39,7 +39,7 @@ client:linting:
client:test:
image: node:10
stage: test
needs: ["client:setup"]
needs: ['client:setup']
only:
refs:
- dev
......@@ -56,7 +56,7 @@ client:test:
client:report:
image: python
stage: report
needs: ["client:test"]
needs: ['client:test']
only:
refs:
- 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