Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
9 changes: 7 additions & 2 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ jobs:
run: npm ci

- name: Install frontend dependencies
run: npm ci
run: npm install
working-directory: FRONTEND

- name: Install backend dependencies
Expand Down Expand Up @@ -79,11 +79,16 @@ jobs:
uses: actions/setup-node@v4
with:
node-version: '20.x'
cache: 'npm'
cache-dependency-path: |
package-lock.json
FRONTEND/package-lock.json
BACKEND/package-lock.json

- name: Install dependencies
run: |
npm ci
cd FRONTEND && npm ci
cd FRONTEND && npm install
cd ../BACKEND && npm ci

- name: Install Playwright Browsers
Expand Down
Loading