Skip to content

Commit 75a3002

Browse files
committed
use force with npm install
1 parent c9187cc commit 75a3002

File tree

2 files changed

+5
-5
lines changed

2 files changed

+5
-5
lines changed

.github/workflows/ci.yaml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ jobs:
1818
with:
1919
node-version: lts/*
2020
- name: Install dependencies
21-
run: npm install
21+
run: npm install --force
2222
- name: Run eslint
2323
run: npm run lint
2424
test:
@@ -32,7 +32,7 @@ jobs:
3232
with:
3333
node-version: lts/*
3434
- name: Install dependencies
35-
run: npm install
35+
run: npm install --force
3636
- name: Run tests
3737
run: npm run test
3838
build:
@@ -46,6 +46,6 @@ jobs:
4646
with:
4747
node-version: lts/*
4848
- name: Install dependencies
49-
run: npm install
49+
run: npm install --force
5050
- name: Attempt a build
5151
run: npm run build

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,12 +11,12 @@ Out of the box you'll get an app layout with chrome (header/sidebar), routing, b
1111
```bash
1212
git clone https://github.com/patternfly/patternfly-react-seed
1313
cd patternfly-react-seed
14-
npm install && npm run start:dev
14+
npm install --force && npm run start:dev
1515
```
1616
## Development scripts
1717
```sh
1818
# Install development/build dependencies
19-
npm install
19+
npm install --force
2020

2121
# Start the development server
2222
npm run start:dev

0 commit comments

Comments
 (0)