Signed-off-by: Michael Telatynski <7t3chguy@gmail.com>
This commit is contained in:
Michael Telatynski
2025-01-09 14:18:52 +00:00
parent 8477d09d36
commit cc2a94d904
2 changed files with 5 additions and 4 deletions

View File

@@ -88,7 +88,6 @@ jobs:
# @tenbin/jest/reporter generates tenbin-report.json for each shard. # @tenbin/jest/reporter generates tenbin-report.json for each shard.
- name: Upload tenbin-report.json - name: Upload tenbin-report.json
if: github.ref_name == 'main'
uses: actions/upload-artifact@v4 uses: actions/upload-artifact@v4
with: with:
name: tenbin-report-${{ matrix.runner }} name: tenbin-report-${{ matrix.runner }}

View File

@@ -11,7 +11,11 @@ export default {
"test/**", "test/**",
"res/decoder-ring/**", "res/decoder-ring/**",
], ],
project: ["**/*.{js,ts,jsx,tsx}"], project: [
"**/*.{js,ts,jsx,tsx}",
// This throws an error trying to load tenbin - https://knip.dev/reference/known-issues#exceptions-from-config-files
"!src/playwright.config.ts",
],
ignore: [ ignore: [
"docs/**", "docs/**",
"res/jitsi_external_api.min.js", "res/jitsi_external_api.min.js",
@@ -21,8 +25,6 @@ export default {
"src/hooks/useLocalStorageState.ts", "src/hooks/useLocalStorageState.ts",
"src/components/views/elements/InfoTooltip.tsx", "src/components/views/elements/InfoTooltip.tsx",
"src/components/views/elements/StyledCheckbox.tsx", "src/components/views/elements/StyledCheckbox.tsx",
// This throws an error trying to load tenbin for an unknown reason
"src/playwright.config.ts",
], ],
ignoreDependencies: [ ignoreDependencies: [
// Required for `action-validator` // Required for `action-validator`