We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 0405c4f commit 15df9faCopy full SHA for 15df9fa
.github/workflows/lint.yml
@@ -0,0 +1,33 @@
1
+name: Lint Check
2
+
3
+on: [push, pull_request]
4
5
+jobs:
6
+ lint:
7
+ runs-on: ubuntu-latest
8
9
+ steps:
10
+ - name: Checkout code
11
+ uses: actions/checkout@v4
12
13
+ - name: Setup Node.js
14
+ uses: actions/setup-node@v4
15
+ with:
16
+ node-version: "18"
17
+ cache: "npm"
18
+ cache-dependency-path: frontend/package-lock.json
19
20
+ - name: Install dependencies
21
+ run: |
22
+ cd frontend
23
+ npm ci
24
25
+ - name: Run lint
26
27
28
+ npm run lint
29
30
+ - name: Check formatting
31
32
33
+ npm run format:check
0 commit comments