Skip to content

Commit 6491edb

Browse files
authored
Merge branch 'main' into refactor/update-form-control-to-css-modules-3
2 parents 5e1e74c + 161e3fd commit 6491edb

File tree

515 files changed

+1949
-866
lines changed

Some content is hidden

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

515 files changed

+1949
-866
lines changed

.changeset/big-jokes-jog.md

-5
This file was deleted.

.changeset/cyan-buses-visit.md

-5
This file was deleted.

.changeset/cyan-eggs-sort.md

+5

.changeset/eighty-suits-pay.md

-5
This file was deleted.

.changeset/empty-crews-impress.md

-5
This file was deleted.

.changeset/four-plants-thank.md

-5
This file was deleted.

.changeset/friendly-tomatoes-yell.md

-5
This file was deleted.

.changeset/fuzzy-owls-dance.md

-5
This file was deleted.

.changeset/gentle-apes-do.md

-5
This file was deleted.

.changeset/grumpy-numbers-eat.md

-5
This file was deleted.

.changeset/healthy-foxes-hunt.md

-5
This file was deleted.

.changeset/healthy-humans-chew.md

-5
This file was deleted.

.changeset/hot-chicken-tickle.md

-5
This file was deleted.

.changeset/kind-kiwis-crash.md

-5
This file was deleted.

.changeset/large-cars-repeat.md

-5
This file was deleted.

.changeset/large-grasshoppers-work.md

-5
This file was deleted.

.changeset/large-rats-film.md

-5
This file was deleted.

.changeset/metal-steaks-unite.md

-5
This file was deleted.

.changeset/new-pans-shout.md

-5
This file was deleted.

.changeset/nine-fishes-fry.md

-5
This file was deleted.

.changeset/popular-moose-end.md

+5

.changeset/quick-chairs-rule.md

-5
This file was deleted.

.changeset/shiny-ladybugs-own.md

-5
This file was deleted.

.changeset/slimy-chefs-divide.md

+5

.changeset/slow-spoons-peel.md

-5
This file was deleted.

.changeset/soft-bananas-behave.md

-5
This file was deleted.

.changeset/soft-fishes-tell.md

-5
This file was deleted.

.changeset/spicy-foxes-switch.md

-5
This file was deleted.

.changeset/stupid-elephants-work.md

-5
This file was deleted.

.changeset/tender-queens-juggle.md

-5
This file was deleted.

.changeset/tiny-fireants-deny.md

+5

.changeset/tricky-scissors-walk.md

+5

.changeset/wicked-geckos-float.md

-5
This file was deleted.

.eslintrc.js

+8-2
Original file line numberDiff line numberDiff line change
@@ -200,8 +200,14 @@ module.exports = {
200200
parserOptions: {
201201
project: 'tsconfig.json',
202202
},
203-
extends: ['plugin:playwright/jest-playwright'],
204-
rules: {},
203+
extends: ['plugin:playwright/recommended'],
204+
rules: {
205+
'playwright/expect-expect': 'off',
206+
'playwright/no-conditional-expect': 'off',
207+
'playwright/no-conditional-in-test': 'off',
208+
'playwright/no-wait-for-selector': 'off',
209+
'playwright/valid-title': 'off',
210+
},
205211
},
206212

207213
// rules which apply only to Markdown

.github/workflows/assign_release_conductor.yml

-1
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,6 @@ jobs:
1818
- uses: actions/setup-node@v4
1919
with:
2020
node-version: 22
21-
- run: npm i -g npm@^10.5.1
2221
- run: npm ci
2322
- uses: ./.github/actions/pagerduty
2423
id: pagerduty

.github/workflows/ci.yml

-15
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,6 @@ jobs:
2727
with:
2828
node-version: 22
2929
cache: 'npm'
30-
- run: npm i -g npm@^10.5.1
3130
- name: Install dependencies
3231
run: npm ci
3332
- name: Check for unformatted files
@@ -43,7 +42,6 @@ jobs:
4342
with:
4443
node-version: 22
4544
cache: 'npm'
46-
- run: npm i -g npm@^10.5.1
4745
- name: Install dependencies
4846
run: npm ci
4947
- name: Lint JavaScript
@@ -63,7 +61,6 @@ jobs:
6361
with:
6462
node-version: 22
6563
cache: 'npm'
66-
- run: npm i -g npm@^10.5.1
6764
- name: Install dependencies
6865
run: npm ci
6966
- name: Build
@@ -81,7 +78,6 @@ jobs:
8178
with:
8279
node-version: 22
8380
cache: 'npm'
84-
- run: npm i -g npm@^10.5.1
8581
- name: Install dependencies
8682
run: npm ci
8783
- name: Build project
@@ -99,7 +95,6 @@ jobs:
9995
with:
10096
node-version: 22
10197
cache: 'npm'
102-
- run: npm i -g npm@^10.5.1
10398
- name: Install dependencies
10499
run: npm ci
105100
- name: Build
@@ -118,7 +113,6 @@ jobs:
118113
with:
119114
node-version: 22
120115
cache: 'npm'
121-
- run: npm i -g npm@^10.5.1
122116
- name: Install dependencies
123117
run: npm ci
124118
- name: Build storybook
@@ -159,7 +153,6 @@ jobs:
159153
with:
160154
node-version: 22
161155
cache: 'npm'
162-
- run: npm i -g npm@^10.5.1
163156
- name: install dependencies
164157
run: npm ci
165158
- name: download all reports
@@ -196,7 +189,6 @@ jobs:
196189
with:
197190
node-version: 22
198191
cache: 'npm'
199-
- run: npm i -g npm@^10.5.1
200192
- name: Install dependencies
201193
run: npm ci
202194
- name: Build storybook
@@ -237,7 +229,6 @@ jobs:
237229
with:
238230
node-version: 22
239231
cache: 'npm'
240-
- run: npm i -g npm@^10.5.1
241232
- name: install dependencies
242233
run: npm ci
243234
- name: download all reports
@@ -270,7 +261,6 @@ jobs:
270261
with:
271262
node-version: 22
272263
cache: 'npm'
273-
- run: npm i -g npm@^10.5.1
274264
- name: Install dependencies
275265
run: npm ci
276266
- name: Build storybook
@@ -311,7 +301,6 @@ jobs:
311301
with:
312302
node-version: 22
313303
cache: 'npm'
314-
- run: npm i -g npm@^10.5.1
315304
- name: install dependencies
316305
run: npm ci
317306
- name: download all reports
@@ -348,7 +337,6 @@ jobs:
348337
with:
349338
node-version: 22
350339
cache: 'npm'
351-
- run: npm i -g npm@^10.5.1
352340
- name: Install dependencies
353341
run: npm ci
354342
- name: Build storybook
@@ -389,7 +377,6 @@ jobs:
389377
with:
390378
node-version: 22
391379
cache: 'npm'
392-
- run: npm i -g npm@^10.5.1
393380
- name: install dependencies
394381
run: npm ci
395382
- name: download all reports
@@ -419,7 +406,6 @@ jobs:
419406
with:
420407
node-version: 22
421408
cache: 'npm'
422-
- run: npm i -g npm@^10.5.1
423409
- name: Install dependencies
424410
run: npm ci
425411
- name: Build components.json
@@ -435,7 +421,6 @@ jobs:
435421
with:
436422
node-version: 22
437423
cache: 'npm'
438-
- run: npm i -g npm@^10.5.1
439424
- name: Install dependencies
440425
run: npm ci
441426
- name: Build

.github/workflows/codescan.yml

-1
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,6 @@ jobs:
1818
with:
1919
node-version: 22
2020
cache: 'npm'
21-
- run: npm i -g npm@^10.5.1
2221
- name: Install dependencies
2322
run: npm ci
2423

.github/workflows/deploy_preview.yml

-1
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,6 @@ jobs:
1818
with:
1919
node-version: 22
2020
cache: 'npm'
21-
- run: npm i -g npm@^10.5.1
2221
- name: Install dependencies
2322
run: npm ci
2423
- name: Build docs preview

.github/workflows/deploy_preview_forks.yml

-1
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,6 @@ jobs:
1919
with:
2020
node-version: 22
2121
cache: 'npm'
22-
- run: npm i -g npm@^10.5.1
2322
- name: Install dependencies
2423
run: npm ci
2524
- name: Build docs preview

.github/workflows/release-schedule.yml

-1
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,6 @@ jobs:
3131
uses: actions/setup-node@v4
3232
with:
3333
node-version: 22
34-
- run: npm i -g npm@^10.5.1
3534
- name: Install packages for github-script
3635
run: npm i date-fns
3736
- name: Create Release Issue

.github/workflows/release.yml

-1
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,6 @@ jobs:
2424
with:
2525
node-version: 22
2626
cache: 'npm'
27-
- run: npm i -g npm@^10.5.1
2827

2928
- name: Install dependencies
3029
run: npm ci

.github/workflows/release_canary.yml

-1
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,6 @@ jobs:
2727
with:
2828
node-version: 22
2929
cache: 'npm'
30-
- run: npm i -g npm@^10.5.1
3130
- name: Install dependencies
3231
run: npm ci
3332
- name: Build

.github/workflows/release_candidate.yml

-1
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,6 @@ jobs:
2323
with:
2424
node-version: 22
2525
cache: 'npm'
26-
- run: npm i -g npm@^10.5.1
2726

2827
- name: Install dependencies
2928
run: npm ci

0 commit comments

Comments
 (0)