fix shared lib not build during ci

This commit is contained in:
Christian Fehmer 2024-07-15 17:18:14 +02:00
parent 6f2274c51e
commit 8d10769faa
No known key found for this signature in database
GPG key ID: FE53784A69964062

View file

@ -69,7 +69,7 @@ jobs:
node-version: ${{ env.NODE_VERSION }}
- name: Install dependencies
run: npm ci & cd backend && npm ci
run: npm ci && (cd shared && npm ci ) && cd backend && npm ci
- name: Check pretty
run: npm run pretty-code-be
@ -100,7 +100,7 @@ jobs:
run: mv ./firebase-config-example.ts ./firebase-config.ts && cp ./firebase-config.ts ./firebase-config-live.ts
- name: Install dependencies
run: npm ci & cd frontend && npm ci
run: npm ci && (cd shared && npm ci ) && cd frontend && npm ci
- name: Check pretty
run: npm run pretty-code-fe