Skip to content

Commit

Permalink
Merge 638dec6 into 2cf776c
Browse files Browse the repository at this point in the history
  • Loading branch information
Jason3S committed Feb 16, 2024
2 parents 2cf776c + 638dec6 commit a9753bb
Show file tree
Hide file tree
Showing 12 changed files with 4,700 additions and 5 deletions.
1 change: 1 addition & 0 deletions .eslintrc.js
Original file line number Diff line number Diff line change
Expand Up @@ -30,6 +30,7 @@ const config = {
'**/cspell-default.config.js',
'**/dist/**',
'**/dist.*/**',
'tools/*/lib/**',
'**/node_modules/**',
'**/.docusaurus/**',
'docs/_site/**',
Expand Down
11 changes: 10 additions & 1 deletion .github/workflows/integration-test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -138,7 +138,7 @@ jobs:
echo "REPO_NAME=${REPO//${REPLACE}/${REPLACE_WITH}}" >> $GITHUB_OUTPUT
- id: repo-hash
uses: ./.github/actions/echo
uses: streetsidesoftware/actions/public/output@v1
with:
value: >-
${{ hashFiles(
Expand Down Expand Up @@ -249,6 +249,13 @@ jobs:
touch temp/perf/perf-run-empty.csv
cat temp/perf/perf-run-*.csv | sort >> integration-tests/perf/perf.csv
- name: Gen Report
id: report
run: |
echo 'report<<@@REPORT@@' >> $GITHUB_OUTPUT
./tools/perf-chart/bin.js ./integration-tests/perf/perf.csv >> $GITHUB_OUTPUT
echo '@@REPORT@@' >> $GITHUB_OUTPUT
- name: PR Body
id: pr-body
uses: streetsidesoftware/actions/public/pr-body@v1
Expand All @@ -261,6 +268,8 @@ jobs:
- runs_on: "${{ needs.prepare.outputs.runs_on }}"
- node_version: ${{ needs.prepare.outputs.node_version }}
- branch: ${{ github.ref_name }}
${{ steps.report.outputs.report }}
path: |
integration-tests/perf/perf.csv
Expand Down
17 changes: 13 additions & 4 deletions cspell.json
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,10 @@
"noSuggest": true
}
],
"dictionaries": ["workspace", "ignore words"],
"dictionaries": [
"workspace",
"ignore words"
],
"ignorePaths": [
".eslintignore",
".git",
Expand Down Expand Up @@ -73,15 +76,21 @@
],
"useGitignore": true,
"flagWords": [],
"ignoreWords": ["commitcomment"],
"words": [],
"ignoreWords": [
"commitcomment"
],
"words": [
"thistogram"
],
"features": {
"weighted-suggestions": true
},
"overrides": [
{
"filename": "**/CHANGELOG.md",
"words": ["webm"]
"words": [
"webm"
]
}
]
}
21 changes: 21 additions & 0 deletions pnpm-lock.yaml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

1 change: 1 addition & 0 deletions pnpm-workspace.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,7 @@ packages:
- "test-packages/*/*/source"
- "test-fixtures/issues/issue-5034"
- "test-fixtures/issues/issue-5034/frontend"
- "tools/*"
- doc-generator
- integration-tests
- scripts
Expand Down
3 changes: 3 additions & 0 deletions tools/README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
# Internal tools and scripts

These tools are NOT published.
2 changes: 2 additions & 0 deletions tools/perf-chart/bin.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
#!/usr/bin/env node
import './lib/app.cjs';
Loading

0 comments on commit a9753bb

Please sign in to comment.