Skip to content

Commit 71a9e1a

Browse files
committed
build: add workflow to check linting on pull requests to main
1 parent c225a5c commit 71a9e1a

1 file changed

Lines changed: 14 additions & 0 deletions

File tree

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
name: Check linting
2+
on:
3+
pull_request:
4+
branches: [main]
5+
jobs:
6+
lint:
7+
runs-on: ubuntu-latest
8+
steps:
9+
- uses: actions/checkout@v3
10+
- uses: oven-sh/setup-bun@v2
11+
- name: Install dependencies
12+
run: bun install
13+
- name: Check linting
14+
run: bun lint

0 commit comments

Comments
 (0)