Run CI checks through Docker target
All checks were successful
test-build-publish / docker (push) Successful in 2m20s
All checks were successful
test-build-publish / docker (push) Successful in 2m20s
This commit is contained in:
@@ -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
|
||||
|
||||
|
||||
Reference in New Issue
Block a user