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 fe2ec3b commit 32c6edfCopy full SHA for 32c6edf
.github/workflows/frontend.yaml
@@ -11,6 +11,28 @@ concurrency:
11
cancel-in-progress: true
12
13
jobs:
14
+ frontend-prettier-check:
15
+ runs-on: ubuntu-24.04
16
+ steps:
17
+ - name: Git checkout
18
+ uses: actions/checkout@v5
19
+ with:
20
+ sparse-checkout: |
21
+ frontend
22
+
23
+ - name: Setup Node.js
24
+ uses: actions/setup-node@v4
25
26
+ node-version: '23'
27
28
+ - name: Install dependencies
29
+ run: npm ci
30
+ working-directory: frontend
31
32
+ - name: Check code formatting with Prettier
33
+ run: make check-prettify
34
35
36
frontend-test:
37
runs-on: ubuntu-24.04
38
steps:
0 commit comments