diff options
author | silverwind <me@silverwind.io> | 2020-08-20 18:30:56 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-08-20 12:30:56 -0400 |
commit | f19cac41d2170844700ba2bcf85cb2f19d200555 (patch) | |
tree | 1b2a5998bb24d1956780f37ba255a820a04fab33 | |
parent | fff0204cab4df3b36ed746536a1601d79a5a27a1 (diff) | |
download | gitea-f19cac41d2170844700ba2bcf85cb2f19d200555.tar.gz gitea-f19cac41d2170844700ba2bcf85cb2f19d200555.zip |
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>
-rw-r--r-- | .drone.yml | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/.drone.yml b/.drone.yml index 0e05f166f8..0bb731d18d 100644 --- a/.drone.yml +++ b/.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] |