Use Node 14 on CI (#12512)
* Use Node 14 on CI Node 14 is sufficiently stable now, use it on CI. * also run build on node 14 Co-authored-by: Lauris BH <lauris@nix.lv> Co-authored-by: techknowlogick <techknowlogick@gitea.io> Co-authored-by: zeripath <art27@cantab.net>
This commit is contained in:
parent
fff0204cab
commit
f19cac41d2
1 changed files with 4 additions and 4 deletions
|
@ -13,13 +13,13 @@ workspace:
|
||||||
steps:
|
steps:
|
||||||
- name: deps-frontend
|
- name: deps-frontend
|
||||||
pull: always
|
pull: always
|
||||||
image: node:12
|
image: node:14
|
||||||
commands:
|
commands:
|
||||||
- make node_modules
|
- make node_modules
|
||||||
|
|
||||||
- name: lint-frontend
|
- name: lint-frontend
|
||||||
pull: always
|
pull: always
|
||||||
image: node:12
|
image: node:14
|
||||||
commands:
|
commands:
|
||||||
- make lint-frontend
|
- make lint-frontend
|
||||||
depends_on: [deps-frontend]
|
depends_on: [deps-frontend]
|
||||||
|
@ -36,7 +36,7 @@ steps:
|
||||||
|
|
||||||
- name: checks-frontend
|
- name: checks-frontend
|
||||||
pull: always
|
pull: always
|
||||||
image: node:12
|
image: node:14
|
||||||
commands:
|
commands:
|
||||||
- make checks-frontend
|
- make checks-frontend
|
||||||
depends_on: [deps-frontend]
|
depends_on: [deps-frontend]
|
||||||
|
@ -50,7 +50,7 @@ steps:
|
||||||
|
|
||||||
- name: build-frontend
|
- name: build-frontend
|
||||||
pull: always
|
pull: always
|
||||||
image: node:10 # this step is kept at the lowest version of node that we support
|
image: node:14
|
||||||
commands:
|
commands:
|
||||||
- make frontend
|
- make frontend
|
||||||
depends_on: [lint-frontend]
|
depends_on: [lint-frontend]
|
||||||
|
|
Reference in a new issue