Skip to content

Commit e6b8b8c

Browse files
committed
chore: revert unrelated lint changes
1 parent 22b7d49 commit e6b8b8c

File tree

1 file changed

+21
-0
lines changed

1 file changed

+21
-0
lines changed

.github/workflows/lint.yml

Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
name: Lint
2+
3+
on:
4+
pull_request:
5+
push:
6+
branches: [main]
7+
8+
jobs:
9+
lint:
10+
runs-on: ubuntu-latest
11+
steps:
12+
- name: Checkout repository
13+
uses: actions/checkout@v4
14+
- name: Setup Bun
15+
uses: oven-sh/setup-bun@v1
16+
- name: Install dependencies
17+
run: bun install --frozen-lockfile
18+
- name: Run lint
19+
run: bun lint
20+
- name: Fail if lint made changes
21+
run: git diff --exit-code

0 commit comments

Comments
 (0)