Skip to content
Open
Show file tree
Hide file tree
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
14 changes: 8 additions & 6 deletions .github/workflows/CI.yml
Original file line number Diff line number Diff line change
Expand Up @@ -66,13 +66,13 @@ jobs:
with:
node-version: 20
cache: 'npm'
cache-dependency-path: package-lock.json
cache-dependency-path: apps/web/package-lock.json
- name: Install dependencies
run: npm ci
run: npm install --prefix apps/web
- name: Lint
run: npm run lint -w web
run: npm run lint --prefix apps/web
- name: Build
run: npm run build -w web
run: npm run build --prefix apps/web

playwright-e2e:
name: E2E Tests (Playwright)
Expand All @@ -84,9 +84,11 @@ jobs:
with:
node-version: 20
cache: 'npm'
cache-dependency-path: package-lock.json
cache-dependency-path: apps/web/package-lock.json
- name: Install dependencies
run: npm ci
run: npm install
- name: Install web dependencies
run: npm install --prefix apps/web
- name: Install Playwright Browsers
run: npx playwright install --with-deps chromium
- name: Run E2E tests
Expand Down
Loading
Loading