Skip to content

Commit 8ffb1d0

Browse files
committed
👷 add linting workflow
1 parent 6ddea53 commit 8ffb1d0

1 file changed

Lines changed: 30 additions & 0 deletions

File tree

.github/workflows/test.yml

Lines changed: 30 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,30 @@
1+
name: Automated Testing Workflow
2+
3+
on:
4+
pull_request:
5+
branches: [main, dev]
6+
push:
7+
branches: [main, dev]
8+
9+
jobs:
10+
lint:
11+
name: Linting Check
12+
runs-on: ubuntu-latest
13+
steps:
14+
- name: Checkout Repo
15+
uses: actions/checkout@v4
16+
17+
- name: Setup Bun
18+
uses: oven-sh/setup-bun@v2
19+
with:
20+
bun-version: latest
21+
22+
- uses: actions/setup-node@v4
23+
with:
24+
node-version: "lts/*"
25+
26+
- name: Install Dependencies
27+
run: bun install
28+
29+
- name: Run Lint
30+
run: bun lint

0 commit comments

Comments
 (0)