Use the same node version over all frontend jobs

Signed-off-by: Julius Härtl <jus@bitgrid.net>
This commit is contained in:
Julius Härtl
2019-12-17 22:55:50 +01:00
parent 76fbe7a0ea
commit 6bc9d0a49b

View File

@@ -136,11 +136,11 @@ kind: pipeline
name: frontend name: frontend
steps: steps:
- name: install - name: install
image: node:11-alpine image: node:lts-alpine
commands: commands:
- npm install - npm install
- name: eslint - name: eslint
image: node:11-alpine image: node:lts-alpine
commands: commands:
- npm run lint - npm run lint
- name: jsbuild - name: jsbuild