Skip to content

Commit eaf4653

Browse files
authored
Merge branch 'main' into perf/dialog-has-selector
2 parents 7d01d84 + ae051f9 commit eaf4653

File tree

9 files changed

+212
-17
lines changed

9 files changed

+212
-17
lines changed

.github/workflows/aat-reports.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -72,7 +72,7 @@ jobs:
7272
- name: install dependencies
7373
run: npm ci
7474
- name: download all reports
75-
uses: actions/download-artifact@018cc2cf5baa6db3ef3c5f8a56943fffe632ef53
75+
uses: actions/download-artifact@37930b1c2abaa49bbe596cd826c3c89aef350131
7676
with:
7777
path: all-blob-reports
7878
pattern: aat-*

.github/workflows/deploy_preview.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -33,12 +33,12 @@ jobs:
3333
- name: Build docs preview
3434
run: npm run build:docs:preview
3535
- name: Download VRT reports
36-
uses: actions/download-artifact@018cc2cf5baa6db3ef3c5f8a56943fffe632ef53
36+
uses: actions/download-artifact@37930b1c2abaa49bbe596cd826c3c89aef350131
3737
with:
3838
name: vrt
3939
path: docs/public/vrt
4040
- name: Download AAT reports
41-
uses: actions/download-artifact@018cc2cf5baa6db3ef3c5f8a56943fffe632ef53
41+
uses: actions/download-artifact@37930b1c2abaa49bbe596cd826c3c89aef350131
4242
with:
4343
name: aat
4444
path: docs/public/aat

.github/workflows/deploy_preview_forks.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -33,12 +33,12 @@ jobs:
3333
- name: Build docs preview
3434
run: npm run build:docs:preview
3535
- name: Download VRT reports
36-
uses: actions/download-artifact@018cc2cf5baa6db3ef3c5f8a56943fffe632ef53
36+
uses: actions/download-artifact@37930b1c2abaa49bbe596cd826c3c89aef350131
3737
with:
3838
name: vrt
3939
path: docs/public/vrt
4040
- name: Download AAT reports
41-
uses: actions/download-artifact@018cc2cf5baa6db3ef3c5f8a56943fffe632ef53
41+
uses: actions/download-artifact@37930b1c2abaa49bbe596cd826c3c89aef350131
4242
with:
4343
name: aat
4444
path: docs/public/aat

.github/workflows/status-checks.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -102,7 +102,7 @@ jobs:
102102
- name: Override status checks for issue comment
103103
if: ${{ github.event_name == 'issue_comment' && steps.command.outputs.continue == 'true' }}
104104
run: |
105-
SHA=$(gh pr view $NUMBER --json headRefOid --jq '.headRefOid')
105+
SHA=$(gh pr view -R 'primer/react' $NUMBER --json headRefOid --jq '.headRefOid')
106106
if [ -z "$SHA" ]; then
107107
echo "No pull request found for issue #$NUMBER, or gh pr view failed."
108108
exit 1

.github/workflows/vrt-reports.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -83,7 +83,7 @@ jobs:
8383
- name: install dependencies
8484
run: npm ci
8585
- name: download all reports
86-
uses: actions/download-artifact@018cc2cf5baa6db3ef3c5f8a56943fffe632ef53
86+
uses: actions/download-artifact@37930b1c2abaa49bbe596cd826c3c89aef350131
8787
with:
8888
path: all-blob-reports
8989
pattern: vrt-*

package-lock.json

Lines changed: 199 additions & 6 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -55,6 +55,7 @@
5555
"@github/markdownlint-github": "^0.8.0",
5656
"@github/mini-throttle": "2.1.1",
5757
"@github/prettier-config": "0.0.6",
58+
"@github-ui/storybook-addon-performance-panel": "0.1.2",
5859
"@mdx-js/react": "1.6.22",
5960
"@playwright/test": "^1.56.1",
6061
"@prettier/sync": "0.5.5",
@@ -79,7 +80,7 @@
7980
"eslint-plugin-react-hooks": "^7.0.1",
8081
"eslint-plugin-ssr-friendly": "1.3.0",
8182
"eslint-plugin-storybook": "^10.1.10",
82-
"eslint-plugin-testing-library": "^7.15.1",
83+
"eslint-plugin-testing-library": "^7.15.3",
8384
"fast-glob": "^3.3.3",
8485
"globals": "^16.2.0",
8586
"markdownlint-cli2": "^0.19.0",

packages/react/.storybook/main.ts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -20,6 +20,7 @@ const config: StorybookConfig = {
2020
getAbsolutePath('@storybook/addon-a11y'),
2121
getAbsolutePath('@storybook/addon-links'),
2222
getAbsolutePath('@storybook/addon-docs'),
23+
'@github-ui/storybook-addon-performance-panel',
2324
],
2425

2526
framework: {

script/check-classname-tests.mjs

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
#!/usr/bin/env node
22

3-
import {readFileSync, readdirSync, statSync} from 'fs'
4-
import {join, dirname} from 'path'
5-
import {fileURLToPath} from 'url'
3+
import {readFileSync, readdirSync, statSync} from 'node:fs'
4+
import {join, dirname} from 'node:path'
5+
import {fileURLToPath} from 'node:url'
66

77
const __filename = fileURLToPath(import.meta.url)
88
const __dirname = dirname(__filename)

0 commit comments

Comments
 (0)