-
Notifications
You must be signed in to change notification settings - Fork 28
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
ci(tests): fix tests and ci workflows #163
base: main
Are you sure you want to change the base?
Conversation
@@ -1222,7 +1222,7 @@ test("trying to add message to store that isn't on allowlist", async (t) => { | |||
}); | |||
|
|||
test("adding message from too far into the future", async (t) => { | |||
env.MAX_TIMESTAMP_DELTA_SECS = 60; |
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:
Type 'number' is not assignable to type 'string'
{ | ||
"compilerOptions": { | ||
"module": "ESNext", | ||
"moduleResolution": "Bundler", | ||
"checkJs": true, | ||
"target": "ES2022", | ||
"allowImportingTsExtensions": true, | ||
"strictNullChecks": true, | ||
"strictFunctionTypes": true | ||
}, | ||
"exclude": [ | ||
"node_modules", | ||
"**/node_modules/*" | ||
] | ||
} |
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.
Dev:
This gives typechecking in VSCode Studio (it uses the typescript typechecker).
@@ -0,0 +1,91 @@ | |||
name: Docker build & push image |
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 will be needed in a forthcoming PR for doing E2E testing in ephemeral CI instances.
The reason being it will be much easier to track regressions and also we need the container env anyway for network tests.
@@ -1,3 +1,9 @@ | |||
root = true |
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.
nit:
correct editorconfig 🍆
No description provided.