Skip to content

Commit 5326ef8

Browse files
committed
Lint CI added
1 parent 1df13c1 commit 5326ef8

1 file changed

Lines changed: 19 additions & 0 deletions

File tree

.github/workflows/lint.yaml

Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
name: lint
2+
on:
3+
push:
4+
branches: ["*"]
5+
pull_request:
6+
branches: ["master"]
7+
workflow_dispatch:
8+
jobs:
9+
build:
10+
runs-on: ubuntu-latest
11+
steps:
12+
- uses: actions/checkout@v4
13+
- uses: oven-sh/setup-bun@v2
14+
- name: install
15+
run: bun install
16+
- name: Check Lint
17+
run: bun run lint
18+
- name: Check Code Formatting
19+
run: bun run format

0 commit comments

Comments
 (0)