-
Notifications
You must be signed in to change notification settings - Fork 489
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
deps: remove unused deps and dep-check in CI #2206
Conversation
This test was failing consistently when running test:unit locally
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
self review
@@ -339,7 +339,7 @@ describe('selectPeersCoordinates', () => { | |||
}) | |||
|
|||
describe('PeerLocationResolver', () => { | |||
describe('findLocations', () => { | |||
describe.skip('findLocations', () => { |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This is failing due to network requests. disabling for now.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
opened #2207 to re-enable
|
||
const webuiPort = 3001 | ||
const rpcPort = 55001 | ||
const rpcPort = await getPort(55001, '0.0.0.0') |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
fixes issues where running other programs locally can cause unexpected failures. (Mintter was on 55001 here)
"docs", | ||
"build" | ||
], | ||
"scripts": { | ||
"start": "run-script-os", | ||
"start:win32": "@powershell -Command $env:REACT_APP_GIT_REV=(git rev-parse --short HEAD); react-app-rewired-esm start", | ||
"start:darwin:linux": "cross-env NODE_ENV=development REACT_APP_ENV=development REACT_APP_GIT_REV=`git rev-parse --short HEAD` react-app-rewired-esm start", | ||
"lint": "run-s eslint typecheck", | ||
"lint": "run-s eslint typecheck dep-check", |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
this isn't called by CI, but probably should be. will address later (combine workflows currently doing typecheck, eslint, & depcheck separately)
🎉 This PR is included in version 4.2.1 🎉 The release is available on GitHub release Your semantic-release bot 📦🚀 |
fixes #2020