Skip to content
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 0 additions & 6 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -29,9 +29,6 @@ jobs:
node-version: '22'
cache: 'npm'

- name: Upgrade npm to v11
run: npm install -g npm@11

- name: Install dependencies
run: npm ci

Expand Down Expand Up @@ -60,9 +57,6 @@ jobs:
node-version: '22'
cache: 'npm'

- name: Upgrade npm to v11
run: npm install -g npm@11

- name: Install dependencies
run: npm ci

Expand Down
4 changes: 2 additions & 2 deletions Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -3,14 +3,14 @@ FROM node:22-slim AS deps
WORKDIR /app

COPY package.json package-lock.json ./
RUN npm install -g npm@11 && npm ci --omit=dev
RUN npm ci --omit=dev

# ── Stage 2: builder ───────────────────────────────────────────────────────────
FROM node:22-slim AS builder
WORKDIR /app

COPY package.json package-lock.json ./
RUN npm install -g npm@11 && npm ci
RUN npm ci

COPY . .

Expand Down
Loading