Skip to content

Commit 14d528e

Browse files
The
added 123 packages, and audited 124 packages in 6s 35 packages are looking for funding run `npm fund` for details found 0 vulnerabilities command can only install with an existing package-lock.json
1 parent 072670f commit 14d528e

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

.github/workflows/ci.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -59,7 +59,7 @@ jobs:
5959
node-version: 20
6060

6161
- name: Install Node deps
62-
run: npm ci
62+
run: npm install
6363

6464
- name: Build CSS
6565
run: npm run build:css # Creates src/static/css/site.css

.github/workflows/publish.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ jobs:
2323

2424
- name: Install deps + build Tailwind
2525
run: |
26-
npm ci
26+
npm install
2727
npm run build:css
2828
2929
- name: Upload built CSS

Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ WORKDIR /frontend
44

55
# Copy only files that affect the CSS build to leverage Docker cache
66
COPY package*.json ./
7-
RUN npm ci
7+
RUN npm install
88

99
# Tailwind source --> final CSS
1010
# (adjust the paths if you store Tailwind input elsewhere)

0 commit comments

Comments
 (0)