Skip to content

Commit

Permalink
fix actions
Browse files Browse the repository at this point in the history
  • Loading branch information
thewilloftheshadow committed Apr 16, 2024
1 parent 2afc608 commit 70e2301
Show file tree
Hide file tree
Showing 5 changed files with 10 additions and 14 deletions.
2 changes: 1 addition & 1 deletion .github/actions/setup/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ runs:
steps:
- uses: pnpm/[email protected]
with:
version: 7
version: 8

- name: Setup Node.js environment
uses: actions/setup-node@v4
Expand Down
11 changes: 2 additions & 9 deletions .vscode/settings.json
Original file line number Diff line number Diff line change
@@ -1,12 +1,5 @@
{
"dotenv.enableAutocloaking": false,
"cSpell.words": [
"biomejs",
"Buape",
"carbonjs",
"hono",
"Rocko",
"whatwg"
],
"cSpell.words": ["biomejs", "Buape", "carbonjs", "hono", "Rocko", "whatwg"],
"editor.defaultFormatter": "biomejs.biome"
}
}
2 changes: 1 addition & 1 deletion packages/carbon/src/classes/Client.ts
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ export class Client {
body: JSON.stringify(commands)
}
)
} catch { }
} catch {}
}

private setupRoutes() {
Expand Down
5 changes: 4 additions & 1 deletion packages/carbon/tests/index.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -10,5 +10,8 @@ test("Serializing commands", () => {
}
}

expect(new PingCommand().serialize()).toEqual({ name: "test", description: "test" })
expect(new PingCommand().serialize()).toEqual({
name: "test",
description: "test"
})
})
4 changes: 2 additions & 2 deletions packages/nodejs/tests/index.test.ts
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
import { expect, test } from "vitest";
import { expect, test } from "vitest"

test("Dummy test", () => expect(1).toBe(1))
test("Dummy test", () => expect(1).toBe(1))

0 comments on commit 70e2301

Please sign in to comment.