chore(deps): update node.js to v19

This commit is contained in:
renovate 2022-10-18 22:03:50 +00:00
parent 4ee8f600a3
commit c9043b1e0f
2 changed files with 9 additions and 9 deletions

View File

@ -40,7 +40,7 @@ steps:
# - .cache
- name: dependencies
image: node:18-alpine
image: node:19-alpine
pull: true
environment:
PNPM_CACHE_FOLDER: .cache/pnpm
@ -52,7 +52,7 @@ steps:
# - restore-cache
- name: lint
image: node:18-alpine
image: node:19-alpine
pull: true
environment:
PNPM_CACHE_FOLDER: .cache/pnpm
@ -63,7 +63,7 @@ steps:
- dependencies
- name: build-prod
image: node:18-alpine
image: node:19-alpine
pull: true
environment:
PNPM_CACHE_FOLDER: .cache/pnpm
@ -74,7 +74,7 @@ steps:
- dependencies
- name: test-unit
image: node:18-alpine
image: node:19-alpine
pull: true
commands:
- corepack enable && pnpm config set store-dir .cache/pnpm
@ -84,7 +84,7 @@ steps:
- name: typecheck
failure: ignore
image: node:18-alpine
image: node:19-alpine
pull: true
environment:
PNPM_CACHE_FOLDER: .cache/pnpm
@ -135,7 +135,7 @@ steps:
# - dependencies
- name: deploy-preview
image: node:18-alpine
image: node:19-alpine
pull: true
environment:
NETLIFY_AUTH_TOKEN:
@ -196,7 +196,7 @@ steps:
# - .cache
- name: build
image: node:18-alpine
image: node:19-alpine
pull: true
group: build-static
environment:
@ -272,7 +272,7 @@ steps:
# - .cache
- name: build
image: node:18-alpine
image: node:19-alpine
pull: true
group: build-static
environment:

View File

@ -1,5 +1,5 @@
# Stage 1: Build application
FROM node:18-alpine AS compile-image
FROM node:19-alpine AS compile-image
WORKDIR /build