The communications platform that puts data protection first.
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
Rocket.Chat/.github/actions/setup-playwright/action.yml

20 lines
585 B

name: Setup Playwright
runs:
using: 'composite'
steps:
- name: Cache Playwright binaries
uses: actions/cache@v4
id: cache-playwright
with:
path: |
~/.cache/ms-playwright
# This is the version of Playwright that we are using, if you are willing to upgrade, you should update this.
key: playwright-${{ runner.arch }}-${{ runner.os }}-1.52.0
- name: Install Playwright
shell: bash
if: steps.cache-playwright.outputs.cache-hit != 'true'
working-directory: .
run: npx playwright install --with-deps