Updated to node 16

This commit is contained in:
Alejandro Celaya 2022-05-25 18:13:32 +02:00
parent 7bbc7250dd
commit 3f34a1fb87
5 changed files with 5 additions and 5 deletions

View file

@ -11,6 +11,6 @@ jobs:
ci:
uses: shlinkio/github-actions/.github/workflows/web-app-ci.yml@main
with:
node-version: 16.14
node-version: 16.15
with-mutation-tests: true
publish-coverage: true

View file

@ -16,7 +16,7 @@ jobs:
- name: Use node.js
uses: actions/setup-node@v1
with:
node-version: 16.14
node-version: 16.15
- name: Build
run: |
npm ci && \

View file

@ -14,7 +14,7 @@ jobs:
- name: Use node.js
uses: actions/setup-node@v1
with:
node-version: 16.14
node-version: 16.15
- name: Generate release assets
run: npm ci && VERSION=${GITHUB_REF#refs/tags/v} npm run build:dist
- name: Publish release with assets

View file

@ -1,4 +1,4 @@
FROM node:16.14-alpine as node
FROM node:16.15-alpine as node
COPY . /shlink-web-client
ARG VERSION="latest"
ENV VERSION ${VERSION}

View file

@ -3,7 +3,7 @@ version: '3'
services:
shlink_web_client_node:
container_name: shlink_web_client_node
image: node:16.14-alpine
image: node:16.15-alpine
command: /bin/sh -c "cd /home/shlink/www && npm install && npm run start"
volumes:
- ./:/home/shlink/www