Skip to content

Commit

Permalink
Remove --legacy-peer-deps flag from CI, run install without it to upd…
Browse files Browse the repository at this point in the history
…ate lockfile
  • Loading branch information
mturley committed Aug 19, 2022
1 parent df31c1e commit 460c72d
Show file tree
Hide file tree
Showing 2 changed files with 2,361 additions and 36 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ jobs:
with:
node-version: lts/*
- name: Install dependencies
run: npm install --legacy-peer-deps # TODO remove --legacy-peer-deps after https://github.com/patternfly/patternfly-react-seed/issues/134 is fixed
run: npm install
- name: Run eslint
run: npm run lint
test:
Expand All @@ -32,7 +32,7 @@ jobs:
with:
node-version: lts/*
- name: Install dependencies
run: npm install --legacy-peer-deps # TODO remove --legacy-peer-deps after https://github.com/patternfly/patternfly-react-seed/issues/134 is fixed
run: npm install
- name: Run tests
run: npm run test
build:
Expand All @@ -46,6 +46,6 @@ jobs:
with:
node-version: lts/*
- name: Install dependencies
run: npm install --legacy-peer-deps # TODO remove --legacy-peer-deps after https://github.com/patternfly/patternfly-react-seed/issues/134 is fixed
run: npm install
- name: Attempt a build
run: npm run build
Loading

0 comments on commit 460c72d

Please sign in to comment.