We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 6f34e98 commit fd6e301Copy full SHA for fd6e301
.github/workflows/push.yml
@@ -12,7 +12,7 @@ jobs:
12
with:
13
node-version: 16.x
14
cache: npm
15
- - run: npm install
+ - run: npm install --force
16
- run: npm run lint:check
17
- run: npm run format:check
18
@@ -25,7 +25,7 @@ jobs:
25
26
27
28
29
- run: npm run build
30
31
docker:
Dockerfile
@@ -7,7 +7,7 @@ ENV REACT_APP_API_ENDPOINT $REACT_APP_API_ENDPOINT
7
RUN mkdir /app
8
WORKDIR /app
9
COPY package.json /app
10
-RUN npm install
+RUN npm install --force
11
COPY . /app
RUN npm run build
0 commit comments