Skip to content

Commit 7d326c1

Browse files
authored
Merge branch '26_1' into issue-308_26_1
2 parents 9df3d85 + 3afe2b4 commit 7d326c1

File tree

807 files changed

+18806
-8997
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

807 files changed

+18806
-8997
lines changed

.env

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
# Nx 18 enables using plugins to infer targets by default
22
# This is disabled for existing workspaces to maintain compatibility
33
# For more info, see: https://nx.dev/concepts/inferred-tasks
4-
NX_ADD_PLUGINS=false
4+
NX_ADD_PLUGINS=false
5+
NX_SKIP_NX_CACHE=true

.github/actions/run-qunit-tests/action.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ runs:
4242
# - name: Setup Chrome
4343
# uses: ./.github/actions/setup-chrome-headless-shell
4444
# with:
45-
# chrome-version: '141.0.7390.122'
45+
# chrome-version: '145.0.7632.67'
4646

4747
# - name: Use Node.js
4848
# uses: actions/setup-node@v4
@@ -77,9 +77,9 @@ runs:
7777
path: |
7878
${{ env.STORE_PATH }}
7979
.nx/cache
80-
key: ${{ runner.os }}-pnpm-store-${{ hashFiles('**/pnpm-lock.yaml') }}
80+
key: ${{ runner.os }}-pnpm-cache-${{ hashFiles('**/pnpm-lock.yaml') }}
8181
restore-keys: |
82-
${{ runner.os }}-pnpm-store
82+
${{ runner.os }}-pnpm-cache
8383
8484
- name: Install dependencies
8585
shell: bash

.github/workflows/build_all.yml

Lines changed: 3 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -39,12 +39,10 @@ jobs:
3939
- uses: actions/cache@v4
4040
name: Setup pnpm cache
4141
with:
42-
path: |
43-
${{ env.STORE_PATH }}
44-
.nx/cache
45-
key: ${{ runner.os }}-pnpm-store-${{ hashFiles('**/pnpm-lock.yaml') }}
42+
path: ${{ env.STORE_PATH }}
43+
key: ${{ runner.os }}-pnpm-cache-${{ hashFiles('**/pnpm-lock.yaml') }}
4644
restore-keys: |
47-
${{ runner.os }}-pnpm-store
45+
${{ runner.os }}-pnpm-cache
4846
4947
- name: Install dependencies
5048
run: pnpm install --frozen-lockfile

.github/workflows/codeql.yml

Lines changed: 3 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -33,12 +33,10 @@ jobs:
3333
- uses: actions/cache@v4
3434
name: Setup pnpm cache
3535
with:
36-
path: |
37-
${{ env.STORE_PATH }}
38-
.nx/cache
39-
key: ${{ runner.os }}-pnpm-store-${{ hashFiles('**/pnpm-lock.yaml') }}
36+
path: ${{ env.STORE_PATH }}
37+
key: ${{ runner.os }}-pnpm-cache-${{ hashFiles('**/pnpm-lock.yaml') }}
4038
restore-keys: |
41-
${{ runner.os }}-pnpm-store
39+
${{ runner.os }}-pnpm-cache
4240
4341
- name: Install dependencies
4442
run: pnpm install --frozen-lockfile

.github/workflows/default_workflow.yml

Lines changed: 4 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ on:
1313
- "[0-9][0-9]_[0-9]"
1414

1515
env:
16-
NX_SKIP_NX_CACHE: ${{ (github.event_name != 'pull_request' || contains( github.event.pull_request.labels.*.name, 'skip-cache')) && 'true' || 'false' }}
16+
NX_SKIP_NX_CACHE: true
1717

1818
jobs:
1919
main:
@@ -42,12 +42,10 @@ jobs:
4242
- uses: actions/cache@v4
4343
name: Setup pnpm cache
4444
with:
45-
path: |
46-
${{ env.STORE_PATH }}
47-
.nx/cache
48-
key: ${{ runner.os }}-pnpm-store-${{ hashFiles('**/pnpm-lock.yaml') }}
45+
path: ${{ env.STORE_PATH }}
46+
key: ${{ runner.os }}-pnpm-cache-${{ hashFiles('**/pnpm-lock.yaml') }}
4947
restore-keys: |
50-
${{ runner.os }}-pnpm-store
48+
${{ runner.os }}-pnpm-cache
5149
5250
- name: Install dependencies
5351
run: pnpm install --frozen-lockfile

.github/workflows/demos_unit_tests.yml

Lines changed: 3 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -55,12 +55,10 @@ jobs:
5555
- uses: actions/cache@v4
5656
name: Setup pnpm cache
5757
with:
58-
path: |
59-
${{ env.STORE_PATH }}
60-
.nx/cache
61-
key: ${{ runner.os }}-pnpm-store-${{ hashFiles('**/pnpm-lock.yaml') }}
58+
path: ${{ env.STORE_PATH }}
59+
key: ${{ runner.os }}-pnpm-cache-${{ hashFiles('**/pnpm-lock.yaml') }}
6260
restore-keys: |
63-
${{ runner.os }}-pnpm-store
61+
${{ runner.os }}-pnpm-cache
6462
6563
- name: Install dependencies
6664
run: pnpm install --frozen-lockfile

.github/workflows/health-check.yml

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
name: Health Check
2+
3+
on:
4+
workflow_dispatch:
5+
push:
6+
branches:
7+
- 26_1
8+
9+
jobs:
10+
invoke:
11+
name: Invoke
12+
uses: DevExpress/github-actions/.github/workflows/repository-check.yml@repo-check/latest

.github/workflows/lint.yml

Lines changed: 16 additions & 27 deletions
Original file line numberDiff line numberDiff line change
@@ -12,8 +12,7 @@ on:
1212
branches: [26_1]
1313

1414
env:
15-
NX_CLOUD_ACCESS_TOKEN: ${{ secrets.NX_TOKEN }}
16-
NX_SKIP_NX_CACHE: ${{ (github.event_name != 'pull_request' || contains( github.event.pull_request.labels.*.name, 'skip-cache')) && 'true' || 'false' }}
15+
NX_SKIP_NX_CACHE: true
1716

1817
jobs:
1918
TS:
@@ -40,12 +39,10 @@ jobs:
4039
- uses: actions/cache@v4
4140
name: Setup pnpm cache
4241
with:
43-
path: |
44-
${{ env.STORE_PATH }}
45-
.nx/cache
46-
key: ${{ runner.os }}-pnpm-store-${{ hashFiles('**/pnpm-lock.yaml') }}
42+
path: ${{ env.STORE_PATH }}
43+
key: ${{ runner.os }}-pnpm-cache-${{ hashFiles('**/pnpm-lock.yaml') }}
4744
restore-keys: |
48-
${{ runner.os }}-pnpm-store
45+
${{ runner.os }}-pnpm-cache
4946
5047
- name: Install dependencies
5148
run: pnpm install --frozen-lockfile
@@ -96,12 +93,10 @@ jobs:
9693
- uses: actions/cache@v4
9794
name: Setup pnpm cache
9895
with:
99-
path: |
100-
${{ env.STORE_PATH }}
101-
.nx/cache
102-
key: ${{ runner.os }}-pnpm-store-${{ hashFiles('**/pnpm-lock.yaml') }}
96+
path: ${{ env.STORE_PATH }}
97+
key: ${{ runner.os }}-pnpm-cache-${{ hashFiles('**/pnpm-lock.yaml') }}
10398
restore-keys: |
104-
${{ runner.os }}-pnpm-store
99+
${{ runner.os }}-pnpm-cache
105100
106101
- name: Install dependencies
107102
run: pnpm install --frozen-lockfile
@@ -140,12 +135,10 @@ jobs:
140135
- uses: actions/cache@v4
141136
name: Setup pnpm cache
142137
with:
143-
path: |
144-
${{ env.STORE_PATH }}
145-
.nx/cache
146-
key: ${{ runner.os }}-pnpm-store-${{ hashFiles('**/pnpm-lock.yaml') }}
138+
path: ${{ env.STORE_PATH }}
139+
key: ${{ runner.os }}-pnpm-cache-${{ hashFiles('**/pnpm-lock.yaml') }}
147140
restore-keys: |
148-
${{ runner.os }}-pnpm-store
141+
${{ runner.os }}-pnpm-cache
149142
150143
- name: Install dependencies
151144
run: pnpm install --frozen-lockfile
@@ -178,12 +171,10 @@ jobs:
178171
- uses: actions/cache@v4
179172
name: Setup pnpm cache
180173
with:
181-
path: |
182-
${{ env.STORE_PATH }}
183-
.nx/cache
184-
key: ${{ runner.os }}-pnpm-store-${{ hashFiles('**/pnpm-lock.yaml') }}
174+
path: ${{ env.STORE_PATH }}
175+
key: ${{ runner.os }}-pnpm-cache-${{ hashFiles('**/pnpm-lock.yaml') }}
185176
restore-keys: |
186-
${{ runner.os }}-pnpm-store
177+
${{ runner.os }}-pnpm-cache
187178
188179
- name: Install dependencies
189180
run: pnpm install --frozen-lockfile
@@ -227,12 +218,10 @@ jobs:
227218
- uses: actions/cache@v4
228219
name: Setup pnpm cache
229220
with:
230-
path: |
231-
${{ env.STORE_PATH }}
232-
.nx/cache
233-
key: ${{ runner.os }}-pnpm-store-${{ hashFiles('**/pnpm-lock.yaml') }}
221+
path: ${{ env.STORE_PATH }}
222+
key: ${{ runner.os }}-pnpm-cache-${{ hashFiles('**/pnpm-lock.yaml') }}
234223
restore-keys: |
235-
${{ runner.os }}-pnpm-store
224+
${{ runner.os }}-pnpm-cache
236225
237226
- name: Install dependencies
238227
run: pnpm install --frozen-lockfile

.github/workflows/packages_publishing.yml

Lines changed: 6 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -50,12 +50,10 @@ jobs:
5050
- uses: actions/cache@v4
5151
name: Setup pnpm cache
5252
with:
53-
path: |
54-
${{ env.PNPM_STORE_PATH }}
55-
.nx/cache
56-
key: ${{ runner.os }}-pnpm-store-${{ hashFiles('**/pnpm-lock.yaml') }}
53+
path: ${{ env.PNPM_STORE_PATH }}
54+
key: ${{ runner.os }}-pnpm-cache-${{ hashFiles('**/pnpm-lock.yaml') }}
5755
restore-keys: |
58-
${{ runner.os }}-pnpm-store
56+
${{ runner.os }}-pnpm-cache
5957
6058
- name: Install dependencies
6159
run: pnpm install --frozen-lockfile
@@ -150,12 +148,10 @@ jobs:
150148
- uses: actions/cache@v4
151149
name: Setup pnpm cache
152150
with:
153-
path: |
154-
${{ env.PNPM_STORE_PATH }}
155-
.nx/cache
156-
key: ${{ runner.os }}-pnpm-store-${{ hashFiles('**/pnpm-lock.yaml') }}
151+
path: ${{ env.PNPM_STORE_PATH }}
152+
key: ${{ runner.os }}-pnpm-cache-${{ hashFiles('**/pnpm-lock.yaml') }}
157153
restore-keys: |
158-
${{ runner.os }}-pnpm-store
154+
${{ runner.os }}-pnpm-cache
159155
160156
- name: Install dependencies
161157
run: pnpm install --frozen-lockfile

.github/workflows/paths.yml

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,9 +12,8 @@ on:
1212
branches: [26_1]
1313

1414
env:
15+
NX_SKIP_NX_CACHE: true
1516
MAX_LENGTH: 170
16-
NX_CLOUD_ACCESS_TOKEN: ${{ secrets.NX_TOKEN }}
17-
NX_SKIP_NX_CACHE: ${{ (github.event_name != 'pull_request' || contains( github.event.pull_request.labels.*.name, 'skip-cache')) && 'true' || 'false' }}
1817

1918
jobs:
2019
checks:

0 commit comments

Comments
 (0)