Skip to content
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

Merged
merged 2 commits into from
Sep 18, 2024
Merged

fix yarn run build, Docker build #25

merged 2 commits into from
Sep 18, 2024

Conversation

shannonwells
Copy link

@shannonwells shannonwells commented Sep 18, 2024

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#266

  1. Fix the build by backing down a version of tsc and friends until other tools catch up
  2. Add a yarn 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.

@shannonwells shannonwells marked this pull request as ready for review September 18, 2024 21:52
@@ -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;
Copy link
Author

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": "./",
Copy link
Author

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

Copy link

@claireolmstead claireolmstead left a 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!

@shannonwells shannonwells merged commit a1c9b77 into main Sep 18, 2024
6 checks passed
@shannonwells shannonwells deleted the fix-docker-build branch September 18, 2024 22:52
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

2 participants