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
steps:
- name: install
image: node:11-alpine
image: node:lts-alpine
commands:
- npm install
- name: eslint
image: node:11-alpine
image: node:lts-alpine
commands:
- npm run lint
- name: jsbuild