We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 9fa896d commit d1df8a4Copy full SHA for d1df8a4
.github/workflows/ci.yml
@@ -33,6 +33,10 @@ jobs:
33
if: runner.os == 'Linux'
34
run: deno lint
35
36
+ - name: check
37
+ if: runner.os == 'Linux'
38
+ run: deno check
39
+
40
- name: test
41
run: deno test -A
42
src/test/server.node.ts
@@ -14,7 +14,7 @@ export const startServer: StartServerHandler = (options) => {
14
// todo: improve
15
const body = await handlerResponse.arrayBuffer();
16
response.end(new Uint8Array(body));
17
- } catch (error) {
+ } catch (error: any) {
18
// deno-lint-ignore no-console
19
console.error("Error", error);
20
if (!response.headersSent) {
0 commit comments