Update to latest version of NodeJS (#558)
This commit is contained in:
parent
721ed1bcaf
commit
c6122eea93
4 changed files with 10 additions and 6 deletions
5
.github/workflows/cypress.yml
vendored
5
.github/workflows/cypress.yml
vendored
|
@ -13,14 +13,15 @@ jobs:
|
|||
|
||||
strategy:
|
||||
matrix:
|
||||
node-version: [12.x]
|
||||
node-version: [16.x]
|
||||
|
||||
steps:
|
||||
- uses: actions/checkout@v2
|
||||
- name: Use Node.js ${{ matrix.node-version }}
|
||||
uses: actions/setup-node@v1
|
||||
uses: actions/setup-node@v2
|
||||
with:
|
||||
node-version: ${{ matrix.node-version }}
|
||||
check-latest: true
|
||||
|
||||
- run: npm install -g yarn
|
||||
- run: yarn install
|
||||
|
|
6
.github/workflows/node.js.yml
vendored
6
.github/workflows/node.js.yml
vendored
|
@ -16,16 +16,16 @@ jobs:
|
|||
|
||||
strategy:
|
||||
matrix:
|
||||
node-version: [12.x]
|
||||
node-version: [16.x]
|
||||
|
||||
steps:
|
||||
- uses: actions/checkout@v2
|
||||
- name: Use Node.js ${{ matrix.node-version }}
|
||||
uses: actions/setup-node@v1
|
||||
uses: actions/setup-node@v2
|
||||
with:
|
||||
node-version: ${{ matrix.node-version }}
|
||||
check-latest: true
|
||||
|
||||
- run: npm install -g yarn
|
||||
- run: yarn install
|
||||
- run: yarn format-check
|
||||
- run: yarn check-types
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
ARG DEFAULT_KEYCLOAK_ENDPOINT='http:\/\/localhost:8180'
|
||||
|
||||
FROM node:12 as builder
|
||||
FROM node:16 as builder
|
||||
|
||||
ARG DEFAULT_KEYCLOAK_ENDPOINT
|
||||
ARG KEYCLOAK_ENDPOINT
|
||||
|
|
|
@ -3,6 +3,9 @@
|
|||
"version": "1.0.0",
|
||||
"main": "index.js",
|
||||
"license": "MIT",
|
||||
"engines": {
|
||||
"node": "16"
|
||||
},
|
||||
"scripts": {
|
||||
"build": "snowpack build",
|
||||
"build-storybook": "build-storybook -s public",
|
||||
|
|
Loading…
Reference in a new issue