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 b795d9f commit 964fa70Copy full SHA for 964fa70
.github/workflows/ci.yml
@@ -28,5 +28,5 @@ jobs:
28
- name: Install Dependencies
29
run: pnpm i --frozen-lockfile
30
31
- - name: Run biome
32
- run: pnpm run biome || exit 1
+ - name: Run lint
+ run: pnpm run lint
src/index.ts
@@ -2,8 +2,8 @@
2
3
import { Command } from "commander";
4
import { getRepoData } from "./commands/repo";
5
-import { formatOutput } from "./utils/formatter";
6
import { getUserData } from "./commands/user";
+import { formatOutput } from "./utils/formatter";
7
8
const program = new Command();
9
0 commit comments