We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents f45a858 + 61ca517 commit 5df5ab1Copy full SHA for 5df5ab1
1 file changed
.github/workflows/frontlinter.yaml
@@ -0,0 +1,29 @@
1
+name: Frontend CI
2
+
3
+on:
4
+ push:
5
+ paths:
6
+ - 'aima-front/**'
7
+ pull_request:
8
9
10
+jobs:
11
+ lint:
12
+ runs-on: ubuntu-latest
13
+default:
14
+ run:
15
+ working-directory: aima-front
16
+ steps:
17
+ - name: Checkout code
18
+ uses: actions/checkout@v4
19
20
+ - name: Set up Node.js
21
+ uses: actions/setup-node@v4
22
+ with:
23
+ node-version: '24'
24
+ cache: 'npm'
25
+ - name: Install dependencies
26
+ run: npm ci
27
28
+ - name: Run ESLint
29
+ run: npm run lint
0 commit comments