Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
The table of contents is too big for display.
Diff view
Diff view
  •  
  •  
  •  
11 changes: 7 additions & 4 deletions .github/workflows/build.yml
Original file line numberDiff line numberDiff line change
Expand Up@@ -99,7 +99,7 @@ jobs:
browser_integration:
- *shared
- *browser
- 'packages/integration-tests/**'
- 'packages/browser-integration-tests/**'
ember:
- *shared
- *browser
Expand DownExpand Up@@ -144,7 +144,8 @@ jobs:
has_gitflow_label:
${{ github.event_name == 'pull_request' && contains(steps.pr-labels.outputs.labels, ' Gitflow ') }}
force_skip_cache:
${{ github.event_name == 'schedule' || (github.event_name == 'pull_request' && contains(steps.pr-labels.outputs.labels, ' ci-skip-cache ')) }}
${{ github.event_name == 'schedule' || (github.event_name == 'pull_request' &&
contains(steps.pr-labels.outputs.labels, ' ci-skip-cache ')) }}

job_install_deps:
name: Install Dependencies
Expand DownExpand Up@@ -274,7 +275,9 @@ jobs:
needs: [job_get_metadata, job_build]
timeout-minutes: 15
runs-on: ubuntu-20.04
if: github.event_name == 'pull_request' || needs.job_get_metadata.outputs.is_develop == 'true' || needs.job_get_metadata.outputs.is_release == 'true'
if:
github.event_name == 'pull_request' || needs.job_get_metadata.outputs.is_develop == 'true' ||
needs.job_get_metadata.outputs.is_release == 'true'
steps:
- name: Check out current commit (${{ needs.job_get_metadata.outputs.commit_label }})
uses: actions/checkout@v3
Expand DownExpand Up@@ -540,7 +543,7 @@ jobs:
PW_BUNDLE: ${{ matrix.bundle }}
PW_TRACING_ONLY: ${{ matrix.tracing_only }}
run: |
cd packages/integration-tests
cd packages/browser-integration-tests
yarn test:ci

job_browser_integration_tests:
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line numberDiff line numberDiff line change
Expand Up@@ -38,14 +38,14 @@
"packages/angular",
"packages/angular-ivy",
"packages/browser",
"packages/browser-integration-tests",
"packages/core",
"packages/e2e-tests",
"packages/ember",
"packages/eslint-config-sdk",
"packages/eslint-plugin-sdk",
"packages/gatsby",
"packages/hub",
"packages/integration-tests",
"packages/integrations",
"packages/integration-shims",
"packages/overhead-metrics",
Expand Down
Loading