Update to latest version of NodeJS (#558)

This commit is contained in:
Jon Koops 2021-04-30 10:43:23 +02:00 committed by GitHub
parent 721ed1bcaf
commit c6122eea93
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
4 changed files with 10 additions and 6 deletions

View file

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

View file

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

View file

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

View file

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