Upgrade Node to v14

This commit is contained in:
Deluan 2020-05-27 05:35:25 -04:00
parent 9028d301f0
commit 50f3a2c11d
3 changed files with 3 additions and 3 deletions

View File

@ -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

2
.nvmrc
View File

@ -1 +1 @@
v13
v14

View File

@ -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