浏览代码

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>
tags/v1.13.0-rc1
silverwind 3 年前
父节点
当前提交
f19cac41d2
没有帐户链接到提交者的电子邮件
共有 1 个文件被更改,包括 4 次插入4 次删除
  1. 4
    4
      .drone.yml

+ 4
- 4
.drone.yml 查看文件

@@ -13,13 +13,13 @@ workspace:
steps:
- name: deps-frontend
pull: always
image: node:12
image: node:14
commands:
- make node_modules

- name: lint-frontend
pull: always
image: node:12
image: node:14
commands:
- make lint-frontend
depends_on: [deps-frontend]
@@ -36,7 +36,7 @@ steps:

- name: checks-frontend
pull: always
image: node:12
image: node:14
commands:
- make checks-frontend
depends_on: [deps-frontend]
@@ -50,7 +50,7 @@ steps:

- name: build-frontend
pull: always
image: node:10 # this step is kept at the lowest version of node that we support
image: node:14
commands:
- make frontend
depends_on: [lint-frontend]

正在加载...
取消
保存