Skip to content

Commit 964fa70

Browse files
committed
fix: update CI workflow to run lint instead of biome
1 parent b795d9f commit 964fa70

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

.github/workflows/ci.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -28,5 +28,5 @@ jobs:
2828
- name: Install Dependencies
2929
run: pnpm i --frozen-lockfile
3030

31-
- name: Run biome
32-
run: pnpm run biome || exit 1
31+
- name: Run lint
32+
run: pnpm run lint

src/index.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,8 @@
22

33
import { Command } from "commander";
44
import { getRepoData } from "./commands/repo";
5-
import { formatOutput } from "./utils/formatter";
65
import { getUserData } from "./commands/user";
6+
import { formatOutput } from "./utils/formatter";
77

88
const program = new Command();
99

0 commit comments

Comments
 (0)