-
Notifications
You must be signed in to change notification settings - Fork 0
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
fix yarn run build, Docker build #25
Conversation
@@ -214,7 +214,7 @@ describe("Faucet E2E", () => { | |||
|
|||
const oldDrip = new Drip(); | |||
oldDrip.addressSha256 = sha256(userAddress); | |||
oldDrip.timestamp = BigInt(Date.now() - 30 * 60 * 60 * 1000); | |||
oldDrip.timestamp = Date.now() - 30 * 60 * 60 * 1000; |
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.
tsc whines about this. We don't run e2e tests anyway, they are horribly broken
@@ -1,6 +1,6 @@ | |||
{ | |||
"compilerOptions": { | |||
"baseUrl": ".", | |||
"baseUrl": "./", |
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.
I put this back to what it was originally just to see if that was part of the problem, and I figured why not leave it
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.
Did not run, but LGTM!
Docker build was broken because the top level
yarn run build
was broken. It looks like it was because of this problem which keeps coming up: LeDDGroup/typescript-transform-paths#266yarn run build
step to verify-pr workflow. I'm keeping these as separate checkout and run steps because they are also built separately on a merge and deployed in different places.