Archived
1
0

Use frozen lockfile for test dependencies in CI (#4442)

* Use frozen lockfile for test dependencies in CI

This might be causing more Playwright issues.

* Bump Playwright

Mostly just to trigger a reinstall of dependencies since it is cached
and still failing.

Once updated it errors saying install needs to run so add that too.
This commit is contained in:
Asher
2021-11-04 11:39:27 -05:00
committed by GitHub
parent 219cad1783
commit 03651e5e0b
4 changed files with 420 additions and 510 deletions

View File

@ -404,7 +404,9 @@ jobs:
run: yarn --frozen-lockfile
- name: Install Playwright OS dependencies
run: ./test/node_modules/.bin/playwright install-deps
run: |
./test/node_modules/.bin/playwright install-deps
./test/node_modules/.bin/playwright install
- name: Run end-to-end tests
run: yarn test:e2e