We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 46e3d8d commit 13ebae1Copy full SHA for 13ebae1
.github/workflows/lint-web-frontend.yaml
@@ -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
@@ -9,7 +9,7 @@ jobs:
runs-on: ubuntu-latest
strategy:
matrix:
- python-version: ["3.10"]
+ python-version: ["3.12"]
steps:
- uses: actions/checkout@v4
0 commit comments