Skip to content

Commit 13ebae1

Browse files
committed
test: Add web-frontend linting in github actions
1 parent 46e3d8d commit 13ebae1

File tree

2 files changed

+19
-1
lines changed

2 files changed

+19
-1
lines changed
Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,18 @@
1+
name: Lint Web Frontend
2+
3+
on:
4+
- push
5+
- pull_request
6+
7+
jobs:
8+
lint-web-frontend:
9+
runs-on: ubuntu-latest
10+
11+
steps:
12+
- uses: actions/checkout@v4
13+
- name: Set up Bun
14+
uses: oven-sh/setup-bun@v2
15+
- name: Install dependencies
16+
run: cd web-frontend && bun install
17+
- name: Lint
18+
run: cd web-frontend && bun run lint

.github/workflows/test-core.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ jobs:
99
runs-on: ubuntu-latest
1010
strategy:
1111
matrix:
12-
python-version: ["3.10"]
12+
python-version: ["3.12"]
1313

1414
steps:
1515
- uses: actions/checkout@v4

0 commit comments

Comments
 (0)