Skip to content

Commit

Permalink
chore: update cicd
Browse files Browse the repository at this point in the history
  • Loading branch information
ynwd committed Nov 28, 2024
1 parent 2aab764 commit 9d17443
Show file tree
Hide file tree
Showing 5 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/bench.yml
Original file line number Diff line number Diff line change
Expand Up @@ -72,7 +72,7 @@ jobs:
- uses: denoland/setup-deno@v2
with:
deno-version: 2.0.6
deno-version: 2.1.1

- name: Install Oha
uses: baptiste0928/cargo-install@v1
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ jobs:

- uses: denoland/setup-deno@v2
with:
deno-version: 2.0.6
deno-version: 2.1.1

- name: Run tests
run: GITHUB_TOKEN=${{ secrets.GITHUB_TOKEN }} deno task test
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/merge.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ jobs:

- uses: denoland/setup-deno@v2
with:
deno-version: 2.0.6
deno-version: 2.1.1

- run: deno lint --unstable-kv core
- run: deno lint --unstable-kv examples
Expand Down
2 changes: 1 addition & 1 deletion modules/index/index.handler.ts
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ export const handler = async (req: HttpRequest, ctx: Context) => {

const ses = await getSession(req, ctx);
const ws_url = Deno.env.get("DENO_DEPLOYMENT_ID")
? "wss://fastro.deno.dev"
? "wss://fastro.dev"
: "ws://localhost:8000";

if (ses) {
Expand Down
2 changes: 1 addition & 1 deletion modules/index/index.launchpad.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ import { AppContext } from "@app/modules/index/index.context.ts";
function Loader(props: { text: string }) {
return (
<div
class={`container h-screen w-full flex flex-col justify-center text-center bg-gray-900`}
class={`max-w-screen-2xl mx-auto h-screen w-full flex flex-col justify-center text-center bg-gray-900`}
>
{props.text}
</div>
Expand Down

0 comments on commit 9d17443

Please sign in to comment.