Run CI checks through Docker target
All checks were successful
test-build-publish / docker (push) Successful in 2m20s

This commit is contained in:
Space-Banane
2026-05-14 18:45:41 +02:00
parent 76e6ced205
commit cb0d381eb0
3 changed files with 11 additions and 16 deletions

View File

@@ -1,7 +1,14 @@
FROM node:22-alpine AS build
FROM node:22-alpine AS deps
WORKDIR /app
COPY package*.json ./
RUN npm ci
FROM deps AS ci
COPY . .
RUN npm run lint
RUN npm run build
FROM deps AS build
COPY . .
RUN npm run build