Skip to content
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

Test problem matchers #12

Draft
wants to merge 1 commit into
base: main
Choose a base branch
from
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ jobs:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: denoland/setup-deno@v1
- uses: r7kamura/setup-deno@problem-matchers
with:
deno-version: v1.x
- run: deno fmt --check src/**/*.ts
Expand Down
3 changes: 2 additions & 1 deletion src/github.ts
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import { github } from "./deps.ts";
import { performance } from "node:perf_hooks";
import { Performance, performance } from "node:perf_hooks";

Check failure on line 2 in src/github.ts

View workflow job for this annotation

GitHub Actions / lint

`Performance` is never used

// Workaround for deno compatibility issue on undici:
// deno-lint-ignore no-explicit-any
Expand Down Expand Up @@ -29,6 +29,7 @@
);
}

import { Performance, performance } from "node:perf_hooks";

Check failure on line 32 in src/github.ts

View workflow job for this annotation

GitHub Actions / lint

`Performance` is never used
export async function createPullRequest({
githubToken,
owner,
Expand Down
Loading