Skip to content

Commit

Permalink
Cache playwright's chromium installation on GitHub Actions (#7372)
Browse files Browse the repository at this point in the history
  • Loading branch information
david-yz-liu authored Jan 3, 2025
1 parent ec5b5f2 commit acecb60
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 0 deletions.
7 changes: 7 additions & 0 deletions .github/workflows/test_ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -73,6 +73,13 @@ jobs:
key: ${{ runner.os }}-pip-${{ hashFiles('requirements-jupyter.txt') }}-${{ hashFiles('requirements-scanner.txt') }}-${{ hashFiles('requirements-qr.txt') }}
restore-keys: |
${{ runner.os }}-pip-
- name: Cache playwright's installation of Chromium
uses: actions/cache@v4
with:
path: ~/.cache/ms-playwright
key: ${{ runner.os }}-playwright-${{ hashFiles('requirements-jupyter.txt') }}
restore-keys: |
${{ runner.os }}-playwright-
- name: Install python packages and playwright dependencies
run: |
python3.10 -m venv venv
Expand Down
1 change: 1 addition & 0 deletions Changelog.md
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,7 @@
- Replace moment.js dependency with much smaller dayjs (#7346)
- Refactor `FileViewer`, `TextViewer`, `BinaryViewer` and `ImageViewer` components (#7270)
- Pin `mistune` Python dependency to preserve compatibility with `nbconvert` (#7371)
- Cache playwright's chromium installation on GitHub Actions (#7372)

## [v2.6.1]

Expand Down

0 comments on commit acecb60

Please sign in to comment.