Skip to content

Commit

Permalink
revert changes to pipelines
Browse files Browse the repository at this point in the history
  • Loading branch information
chrisdholt committed Sep 30, 2023
1 parent 2a5cf99 commit b3fb676
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 2 deletions.
4 changes: 3 additions & 1 deletion .github/workflows/ci-validate-platforms.yml
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,9 @@ jobs:
run: yarn prepare

- name: Install playwright dependencies and browsers
run: npx playwright install --with-deps
run: |
yarn playwright install-deps
yarn playwright install
- name: Run tests in changed packages
if: ${{ github.event_name == 'pull_request' }}
Expand Down
4 changes: 3 additions & 1 deletion .github/workflows/ci-validate-pr.yml
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,9 @@ jobs:
run: yarn prepare

- name: Install playwright dependencies and browsers
run: npx playwright install --with-deps
run: |
yarn playwright install-deps
yarn playwright install
- name: Testing unit tests
run: yarn lerna run test --stream
Expand Down

0 comments on commit b3fb676

Please sign in to comment.