Skip to content

Commit 556cf56

Browse files
Fix front CI
1 parent 731c31d commit 556cf56

File tree

1 file changed

+8
-0
lines changed

1 file changed

+8
-0
lines changed

.github/workflows/tests.yml

+8
Original file line numberDiff line numberDiff line change
@@ -43,13 +43,21 @@ jobs:
4343
- name: Checkout
4444
uses: actions/checkout@v3
4545

46+
- name: Install pnpm
47+
uses: pnpm/action-setup@v2
48+
with:
49+
version: 'latest'
50+
4651
- name: Set up Node.js
4752
uses: actions/setup-node@v4
4853
with:
4954
node-version: '20'
5055
cache: 'pnpm'
5156
cache-dependency-path: 'front/pnpm-lock.yaml'
5257

58+
- name: Install deps
59+
run: cd front && pnpm install
60+
5361
- name: run linter
5462
run: make lint-front
5563

0 commit comments

Comments
 (0)