We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 1df13c1 commit 5326ef8Copy full SHA for 5326ef8
1 file changed
.github/workflows/lint.yaml
@@ -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