Skip to content

Commit 8709204

Browse files
committed
GHA test/release pipeline
1 parent 190dc4c commit 8709204

1 file changed

Lines changed: 5 additions & 5 deletions

File tree

.github/workflows/main.yml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -23,26 +23,26 @@ jobs:
2323

2424
- name: Setup Node.js
2525
uses: actions/setup-node@v6
26-
working-directory: frontend
2726
with:
2827
node-version: 22
2928
cache: 'pnpm'
29+
cache-dependency-path: frontend/pnpm-lock.yaml
3030

3131
- name: Install Dependencies
3232
working-directory: frontend
33-
run: pnpm install --frozen-lockfile
33+
run: ( cd frontend && pnpm install --frozen-lockfile )
3434

3535
- name: Typecheck
3636
working-directory: frontend
37-
run: pnpm typecheck
37+
run: ( cd frontend && pnpm typecheck )
3838

3939
- name: Lint
4040
working-directory: frontend
41-
run: pnpm lint
41+
run: ( cd frontend && pnpm lint )
4242

4343
- name: Test
4444
working-directory: frontend
45-
run: pnpm test
45+
run: ( cd frontend && pnpm test )
4646

4747
- name: Build Frontend
4848
run: make ui

0 commit comments

Comments
 (0)