Skip to content

Commit 858ee28

Browse files
committed
ci: check formatting
1 parent b89afe1 commit 858ee28

File tree

1 file changed

+31
-0
lines changed

1 file changed

+31
-0
lines changed

.github/workflows/check-lint.yml

Lines changed: 31 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,31 @@
1+
name: Check Lint
2+
3+
on:
4+
push:
5+
branches: ["main"]
6+
pull_request:
7+
branches: ["main"]
8+
workflow_dispatch:
9+
10+
concurrency:
11+
group: ${{ github.workflow }}-${{ github.ref }}
12+
cancel-in-progress: true
13+
14+
jobs:
15+
lint:
16+
name: Run linting checks
17+
runs-on: ubuntu-latest
18+
steps:
19+
- name: Checkout code
20+
uses: actions/checkout@v4
21+
22+
- name: Set up Node.js
23+
uses: oven-sh/setup-bun@v2
24+
with:
25+
bun-version: 1.2.2
26+
27+
- name: Install dependencies
28+
run: bun install
29+
30+
- name: Run lint
31+
run: bun run lint

0 commit comments

Comments
 (0)