From 50f3a2c11df90b69a62c36bf41c62a23275a84d4 Mon Sep 17 00:00:00 2001 From: Deluan Date: Wed, 27 May 2020 05:35:25 -0400 Subject: [PATCH] Upgrade Node to v14 --- .github/workflows/pipeline.yml | 2 +- .nvmrc | 2 +- Dockerfile | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/pipeline.yml b/.github/workflows/pipeline.yml index 4e3e931f4..f1d63f575 100644 --- a/.github/workflows/pipeline.yml +++ b/.github/workflows/pipeline.yml @@ -60,7 +60,7 @@ jobs: - uses: actions/checkout@v2 - uses: actions/setup-node@v1 with: - node-version: 13 + node-version: 14 - uses: actions/cache@v1 id: cache-npm diff --git a/.nvmrc b/.nvmrc index a2680a75e..958b5a36e 100644 --- a/.nvmrc +++ b/.nvmrc @@ -1 +1 @@ -v13 +v14 diff --git a/Dockerfile b/Dockerfile index 9c72f1b87..35e4d4887 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,6 +1,6 @@ ##################################################### ### Build UI bundles -FROM node:13-alpine AS jsbuilder +FROM node:14-alpine AS jsbuilder WORKDIR /src COPY ui/package.json ui/package-lock.json ./ RUN npm ci