We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 190dc4c commit 8709204Copy full SHA for 8709204
1 file changed
.github/workflows/main.yml
@@ -23,26 +23,26 @@ jobs:
23
24
- name: Setup Node.js
25
uses: actions/setup-node@v6
26
- working-directory: frontend
27
with:
28
node-version: 22
29
cache: 'pnpm'
+ cache-dependency-path: frontend/pnpm-lock.yaml
30
31
- name: Install Dependencies
32
working-directory: frontend
33
- run: pnpm install --frozen-lockfile
+ run: ( cd frontend && pnpm install --frozen-lockfile )
34
35
- name: Typecheck
36
37
- run: pnpm typecheck
+ run: ( cd frontend && pnpm typecheck )
38
39
- name: Lint
40
41
- run: pnpm lint
+ run: ( cd frontend && pnpm lint )
42
43
- name: Test
44
45
- run: pnpm test
+ run: ( cd frontend && pnpm test )
46
47
- name: Build Frontend
48
run: make ui
0 commit comments