upgrade to node 16

This commit is contained in:
Jan Prochazka
2021-12-25 13:02:22 +01:00
parent fac5cdac75
commit 9c21452d0b
7 changed files with 12 additions and 12 deletions

View File

@@ -22,10 +22,10 @@ jobs:
- uses: actions/checkout@v2 - uses: actions/checkout@v2
with: with:
fetch-depth: 1 fetch-depth: 1
- name: Use Node.js 14.x - name: Use Node.js 16.x
uses: actions/setup-node@v1 uses: actions/setup-node@v1
with: with:
node-version: 14.x node-version: 16.x
- name: yarn install - name: yarn install
run: | run: |
yarn install yarn install

View File

@@ -26,10 +26,10 @@ jobs:
- uses: actions/checkout@v2 - uses: actions/checkout@v2
with: with:
fetch-depth: 1 fetch-depth: 1
- name: Use Node.js 14.x - name: Use Node.js 16.x
uses: actions/setup-node@v1 uses: actions/setup-node@v1
with: with:
node-version: 14.x node-version: 16.x
- name: yarn install - name: yarn install
run: | run: |
yarn install yarn install

View File

@@ -24,10 +24,10 @@ jobs:
- uses: actions/checkout@v2 - uses: actions/checkout@v2
with: with:
fetch-depth: 1 fetch-depth: 1
- name: Use Node.js 14.x - name: Use Node.js 16.x
uses: actions/setup-node@v1 uses: actions/setup-node@v1
with: with:
node-version: 14.x node-version: 16.x
- name: yarn install - name: yarn install
run: | run: |
yarn install yarn install

View File

@@ -30,10 +30,10 @@ jobs:
- uses: actions/checkout@v2 - uses: actions/checkout@v2
with: with:
fetch-depth: 1 fetch-depth: 1
- name: Use Node.js 14.x - name: Use Node.js 16.x
uses: actions/setup-node@v1 uses: actions/setup-node@v1
with: with:
node-version: 14.x node-version: 16.x
- name: yarn install - name: yarn install
run: | run: |
yarn install yarn install

View File

@@ -30,10 +30,10 @@ jobs:
- uses: actions/checkout@v2 - uses: actions/checkout@v2
with: with:
fetch-depth: 1 fetch-depth: 1
- name: Use Node.js 14.x - name: Use Node.js 16.x
uses: actions/setup-node@v1 uses: actions/setup-node@v1
with: with:
node-version: 14.x node-version: 16.x
- name: Configure NPM token - name: Configure NPM token
env: env:

View File

@@ -8,7 +8,7 @@ on:
jobs: jobs:
test-runner: test-runner:
runs-on: ubuntu-latest runs-on: ubuntu-latest
container: node:14.18 container: node:16
steps: steps:
- name: Context - name: Context

View File

@@ -1,4 +1,4 @@
FROM node:14-alpine FROM node:16-alpine
WORKDIR /home/dbgate-docker WORKDIR /home/dbgate-docker