Skip to content
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
33 commits
Select commit Hold shift + click to select a range
a128108
CI: make visual test passing rules stricter
EugeniyKiyashko Jun 30, 2026
d4c6617
no message
EugeniyKiyashko Jun 30, 2026
c2c331b
no message
EugeniyKiyashko Jul 1, 2026
aa6e2b0
no message
EugeniyKiyashko Jul 1, 2026
72e7832
no message
EugeniyKiyashko Jul 1, 2026
291788c
no message
EugeniyKiyashko Jul 1, 2026
ac160e1
revert
EugeniyKiyashko Jul 7, 2026
cdfa970
CI: make visual test passing rules stricter
EugeniyKiyashko Jun 30, 2026
e0ac243
no message
EugeniyKiyashko Jun 30, 2026
5db1269
no message
EugeniyKiyashko Jul 1, 2026
83c1bc4
no message
EugeniyKiyashko Jul 1, 2026
8c48ba9
no message
EugeniyKiyashko Jul 1, 2026
af1e974
no message
EugeniyKiyashko Jul 1, 2026
8a5bd99
revert
EugeniyKiyashko Jul 7, 2026
89511a5
Merge branch '26_1_tests_stability' of https://github.com/EugeniyKiya…
EugeniyKiyashko Jul 7, 2026
531ef99
no message
EugeniyKiyashko Jul 7, 2026
0ddcd7d
no message
EugeniyKiyashko Jul 7, 2026
2b375ba
no message
EugeniyKiyashko Jul 7, 2026
a9c2e09
no message
EugeniyKiyashko Jul 8, 2026
e27febc
e2e tests: collect unstable tests statistics
EugeniyKiyashko Jul 7, 2026
a7036f3
no message
EugeniyKiyashko Jul 7, 2026
6c881e6
no message
EugeniyKiyashko Jul 7, 2026
d4519ab
no message
EugeniyKiyashko Jul 8, 2026
d97d28e
no message
EugeniyKiyashko Jul 8, 2026
93bd496
no message
EugeniyKiyashko Jul 8, 2026
359677d
no message
EugeniyKiyashko Jul 8, 2026
ac3a29c
Merge branch '26_1' into 26_1_run_unstable_with_statistics_
EugeniyKiyashko Jul 8, 2026
10716ff
revert changes
EugeniyKiyashko Jul 8, 2026
e44ab05
SCSS: use adjust if not achromatic helper for all color.adjust (#34218)
vorobey Jul 8, 2026
61ba09a
revert changes
EugeniyKiyashko Jul 8, 2026
4ebb206
Revert "CI: Replace push triggers with merge_group in workflow files"…
r-farkhutdinov Jul 8, 2026
62a368f
Merge branch '26_1' into 26_1_run_unstable_with_statistics_
EugeniyKiyashko Jul 9, 2026
fcd92c0
Merge branch 'main' into 26_1_run_unstable_with_statistics_
EugeniyKiyashko Jul 13, 2026
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 4 additions & 3 deletions .github/workflows/build_all.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,8 @@ on:
pull_request:
paths-ignore:
- 'apps/**/*.md'
merge_group:
push:
branches: [26_1]
workflow_dispatch:
inputs:
SBOM:
Expand Down Expand Up @@ -111,15 +112,15 @@ jobs:
retention-days: 1

- name: Build SBOMs
if: ${{ github.event.inputs.SBOM == 'true' }}
if: ${{ github.event_name == 'push' || github.event.inputs.SBOM == 'true' }}
env:
NODE_AUTH_TOKEN: ${{ secrets.GITHUB_TOKEN }}
run: |
pnpm set //npm.pkg.github.com/:_authToken="$NODE_AUTH_TOKEN";
pnpm nx build sbom;

- name: Upload SBOM artifacts
if: ${{ github.event.inputs.SBOM == 'true' }}
if: ${{ github.event_name == 'push' || github.event.inputs.SBOM == 'true' }}
uses: actions/upload-artifact@v7
with:
name: sbom
Expand Down
4 changes: 3 additions & 1 deletion .github/workflows/default_workflow.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,9 @@ on:
pull_request:
paths-ignore:
- 'apps/**/*.md'
merge_group:
push:
branches:
- "[0-9][0-9]_[0-9]"

env:
NX_SKIP_NX_CACHE: ${{ contains(github.event.pull_request.labels.*.name, 'skip-cache') && 'true' || 'false' }}
Expand Down
3 changes: 2 additions & 1 deletion .github/workflows/demos_unit_tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,8 @@ on:
pull_request:
paths-ignore:
- 'apps/**/*.md'
merge_group:
push:
branches: [26_1]
workflow_dispatch:

env:
Expand Down
3 changes: 2 additions & 1 deletion .github/workflows/lint.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,8 @@ on:
pull_request:
paths-ignore:
- 'apps/**/*.md'
merge_group:
push:
branches: [26_1]

env:
NX_SKIP_NX_CACHE: ${{ contains(github.event.pull_request.labels.*.name, 'skip-cache') && 'true' || 'false' }}
Expand Down
3 changes: 2 additions & 1 deletion .github/workflows/paths.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,8 @@ on:
pull_request:
paths-ignore:
- 'apps/**/*.md'
merge_group:
push:
branches: [26_1]

env:
MAX_LENGTH: 170
Expand Down
3 changes: 2 additions & 1 deletion .github/workflows/playgrounds_tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,8 @@ on:
pull_request:
paths-ignore:
- 'apps/**/*.md'
merge_group:
push:
branches: [26_1]

env:
NX_SKIP_NX_CACHE: ${{ contains(github.event.pull_request.labels.*.name, 'skip-cache') && 'true' || 'false' }}
Expand Down
3 changes: 2 additions & 1 deletion .github/workflows/qunit_tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,8 @@ on:
pull_request:
paths-ignore:
- 'apps/**/*.md'
merge_group:
push:
branches: [26_1]
workflow_dispatch:

env:
Expand Down
3 changes: 2 additions & 1 deletion .github/workflows/renovation.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,8 @@ on:
pull_request:
paths-ignore:
- 'apps/**/*.md'
merge_group:
push:
branches: [26_1]

env:
NX_SKIP_NX_CACHE: ${{ contains(github.event.pull_request.labels.*.name, 'skip-cache') && 'true' || 'false' }}
Expand Down
3 changes: 2 additions & 1 deletion .github/workflows/styles.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,8 @@ on:
pull_request:
paths-ignore:
- 'apps/**/*.md'
merge_group:
push:
branches: [26_1]

env:
NX_SKIP_NX_CACHE: ${{ contains(github.event.pull_request.labels.*.name, 'skip-cache') && 'true' || 'false' }}
Expand Down
Loading
Loading