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
10 changes: 10 additions & 0 deletions .github/workflows/ci-quality.yml
Original file line number Diff line number Diff line change
Expand Up @@ -133,8 +133,18 @@ jobs:
run: sudo apt-get install -y libcairo2-dev
- name: Install dependencies
run: pip install -r requirements.txt coverage
- name: Cache Playwright browsers
id: playwright-cache
uses: actions/cache@v4
with:
path: ~/.cache/ms-playwright
key: ${{ runner.os }}-playwright-1.62.0
- name: Install Playwright
run: playwright install --with-deps chromium
if: steps.playwright-cache.outputs.cache-hit != 'true'
- name: Install Playwright system deps only
run: playwright install-deps chromium
if: steps.playwright-cache.outputs.cache-hit == 'true'
- name: Collect static files
run: python manage.py collectstatic --noinput --verbosity 0
- name: Run integration tests
Expand Down
Loading