Skip to content

Commit db5ef96

Browse files
committed
1 parent 89b7dcb commit db5ef96

File tree

2 files changed

+7
-4
lines changed

2 files changed

+7
-4
lines changed

.github/actions/lint/action.yml

Lines changed: 6 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
name: Lint codebase
2-
description: Run eslint to lint codebase and ensure code quality
2+
description: Run biome to lint codebase and ensure code quality
33

44
runs:
55
using: 'composite'
@@ -8,6 +8,9 @@ runs:
88
run: pnpm install
99
shell: bash
1010

11-
- name: Run eslint
12-
run: pnpm lint
11+
- name: Setup Biome CLI
12+
uses: biomejs/[email protected]
13+
14+
- name: Run biome
15+
run: biome ci
1316
shell: bash

.github/workflows/release.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ jobs:
2222
run: pnpm install
2323

2424
- name: Check codestyle
25-
run: pnpm lint
25+
uses: ./.github/actions/lint
2626

2727
- name: Create Release Pull Request or Publish to npm
2828
id: changesets

0 commit comments

Comments
 (0)