Skip to content

Commit

Permalink
ci: download and execute direclty with out internal dependency
Browse files Browse the repository at this point in the history
  • Loading branch information
danielleroux committed Sep 13, 2024
1 parent 83139d1 commit 46789a0
Show file tree
Hide file tree
Showing 3 changed files with 11 additions and 11 deletions.
10 changes: 5 additions & 5 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ jobs:
- uses: ./.github/workflows/actions/turbo

- name: Install Playwright Browsers
run: pnpm exec playwright install chromium --with-deps
run: pnpm dlx playwright install chromium --with-deps

- name: Visual Regression
run: pnpm run visual-regression --cache-dir=.turbo --filter @siemens/ix -- --shard ${{ matrix.shard }}
Expand All @@ -57,7 +57,7 @@ jobs:
- uses: ./.github/workflows/actions/turbo

- name: Install Playwright Browsers
run: pnpm exec playwright install chromium --with-deps
run: pnpm dlx playwright install chromium --with-deps

- name: Visual Regression
run: pnpm run visual-regression --cache-dir=.turbo --filter @siemens/ix-aggrid
Expand All @@ -79,7 +79,7 @@ jobs:
- uses: ./.github/workflows/actions/turbo

- name: Install Playwright Browsers
run: pnpm exec playwright install chromium --with-deps
run: pnpm dlx playwright install chromium --with-deps

- name: Visual Regression
run: pnpm run visual-regression --cache-dir=.turbo --filter @siemens/ix-echarts
Expand Down Expand Up @@ -108,7 +108,7 @@ jobs:
path: all-blob-reports

- name: Merge into HTML Report
run: pnpm exec playwright merge-reports --reporter html ./all-blob-reports
run: pnpm dlx playwright merge-reports --reporter html ./all-blob-reports

- name: Upload HTML report
uses: actions/upload-artifact@v3
Expand All @@ -126,7 +126,7 @@ jobs:
- uses: ./.github/workflows/actions/turbo

- name: Install Playwright Browsers
run: pnpm exec playwright install chromium --with-deps
run: pnpm dlx playwright install chromium --with-deps

- name: Test
run: pnpm run test --cache-dir=.turbo --filter !\documentation
10 changes: 5 additions & 5 deletions .github/workflows/pr.yml
Original file line number Diff line number Diff line change
Expand Up @@ -95,7 +95,7 @@ jobs:
- uses: ./.github/workflows/actions/turbo

- name: Install Playwright Browsers
run: pnpm exec playwright install chromium --with-deps
run: pnpm dlx playwright install chromium --with-deps

- name: Visual Regression
run: pnpm run visual-regression --cache-dir=.turbo --filter @siemens/ix -- --shard ${{ matrix.shard }}
Expand All @@ -118,7 +118,7 @@ jobs:
- uses: ./.github/workflows/actions/turbo

- name: Install Playwright Browsers
run: pnpm exec playwright install chromium --with-deps
run: pnpm dlx playwright install chromium --with-deps

- name: Visual Regression
run: pnpm run visual-regression --cache-dir=.turbo --filter @siemens/ix-aggrid
Expand All @@ -141,7 +141,7 @@ jobs:
- uses: ./.github/workflows/actions/turbo

- name: Install Playwright Browsers
run: pnpm exec playwright install chromium --with-deps
run: pnpm dlx playwright install chromium --with-deps

- name: Visual Regression
run: pnpm run visual-regression --cache-dir=.turbo --filter @siemens/ix-echarts
Expand Down Expand Up @@ -169,7 +169,7 @@ jobs:
path: all-blob-reports

- name: Merge into HTML Report
run: pnpm exec playwright merge-reports --reporter html ./all-blob-reports
run: pnpm dlx playwright merge-reports --reporter html ./all-blob-reports

- name: Upload HTML report
uses: actions/upload-artifact@v3
Expand All @@ -188,7 +188,7 @@ jobs:
- uses: ./.github/workflows/actions/turbo

- name: Install Playwright Browsers
run: pnpm exec playwright install chromium --with-deps
run: pnpm dlx playwright install chromium --with-deps

- name: Test
run: pnpm run test --cache-dir=.turbo --filter !\documentation
2 changes: 1 addition & 1 deletion .github/workflows/update-visual-snapshots.yml
Original file line number Diff line number Diff line change
Expand Up @@ -121,7 +121,7 @@ jobs:
run: pnpm build --cache-dir=.turbo --filter @siemens/ix

- name: Install Playwright Browsers
run: pnpm exec playwright install chromium --with-deps
run: pnpm dlx playwright install chromium --with-deps

- name: Visual Regression
run: pnpm --filter @siemens/ix visual-regression ${{ steps.parse-command.outputs.args }} -u
Expand Down

0 comments on commit 46789a0

Please sign in to comment.