Skip to content

Commit 2b42cba

Browse files
committed
removing test-setup.js and instances of --force on npm install
1 parent bca8347 commit 2b42cba

File tree

3 files changed

+5
-9
lines changed

3 files changed

+5
-9
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 --force
21+
run: npm install
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 --force
35+
run: npm install
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 --force
49+
run: npm install
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 --force && npm run start:dev
14+
npm install && npm run start:dev
1515
```
1616
## Development scripts
1717
```sh
1818
# Install development/build dependencies
19-
npm install --force
19+
npm install
2020

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

test-setup.js

Lines changed: 0 additions & 4 deletions
This file was deleted.

0 commit comments

Comments
 (0)