Skip to content

Commit

Permalink
Fix lint
Browse files Browse the repository at this point in the history
  • Loading branch information
dahlia committed Feb 24, 2025
1 parent 4d1910e commit 8a76fe0
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/main.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ jobs:
git config --global core.autocrlf false
git config --global core.eol lf
- uses: actions/checkout@v4
- uses: denoland/setup-deno@v1
- uses: denoland/setup-deno@v2
with:
deno-version: v2.x
- uses: oven-sh/setup-bun@v2
Expand Down Expand Up @@ -59,7 +59,7 @@ jobs:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: denoland/setup-deno@v1
- uses: denoland/setup-deno@v2
with:
deno-version: v2.x
- if: github.ref_type == 'branch'
Expand Down
2 changes: 1 addition & 1 deletion logtape/config.ts
Original file line number Diff line number Diff line change
Expand Up @@ -302,7 +302,7 @@ function configureInternal<

if ("process" in globalThis && !("Deno" in globalThis)) {
// @ts-ignore: It's fine to use process in Node
// deno-lint-ignore no-process-globals
// deno-lint-ignore no-process-global
process.on("exit", allowAsync ? dispose : disposeSync);
} else {
// @ts-ignore: It's fine to addEventListener() on the browser/Deno
Expand Down

0 comments on commit 8a76fe0

Please sign in to comment.