Skip to content

Commit fd6e301

Browse files
committed
fix: skip peer-dependencies for use-dark-mode
1 parent 6f34e98 commit fd6e301

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

.github/workflows/push.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ jobs:
1212
with:
1313
node-version: 16.x
1414
cache: npm
15-
- run: npm install
15+
- run: npm install --force
1616
- run: npm run lint:check
1717
- run: npm run format:check
1818

@@ -25,7 +25,7 @@ jobs:
2525
with:
2626
node-version: 16.x
2727
cache: npm
28-
- run: npm install
28+
- run: npm install --force
2929
- run: npm run build
3030

3131
docker:

Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ ENV REACT_APP_API_ENDPOINT $REACT_APP_API_ENDPOINT
77
RUN mkdir /app
88
WORKDIR /app
99
COPY package.json /app
10-
RUN npm install
10+
RUN npm install --force
1111
COPY . /app
1212
RUN npm run build
1313

0 commit comments

Comments
 (0)