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

View File

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