Skip to content

Commit

Permalink
Merge pull request #835 from secretkeylabs/chore/merge-develop-to-pub…
Browse files Browse the repository at this point in the history
…lic-1724411378

merge-develop-to-public
  • Loading branch information
dhriaznov authored Aug 23, 2024
2 parents 4dc056c + dc4a444 commit 7c5a8e7
Show file tree
Hide file tree
Showing 448 changed files with 24,126 additions and 25,165 deletions.
1 change: 1 addition & 0 deletions .github/workflows/build-rc.yml
Original file line number Diff line number Diff line change
Expand Up @@ -31,6 +31,7 @@ jobs:
run: npm ci
- name: Test
run: |
npm run knip
npx eslint .
npx tsc --noEmit
npm test
Expand Down
3 changes: 2 additions & 1 deletion .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -28,6 +28,7 @@ jobs:
run: npm ci
- name: Test
run: |
npm run knip
npx eslint .
npx tsc --noEmit
npm test
Expand All @@ -47,7 +48,7 @@ jobs:
run: xvfb-run --auto-servernum --server-args="-screen 0 360x360x24" npm run e2etest:smoketest --reporter=html
- name: Upload Playwright report
if: always()
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
with:
name: playwright-report
path: playwright-report/
Expand Down
1 change: 1 addition & 0 deletions .github/workflows/playwright.yml
Original file line number Diff line number Diff line change
Expand Up @@ -25,6 +25,7 @@ jobs:
run: npm ci
- name: Test
run: |
npm run knip
npx eslint .
npx tsc --noEmit
npm test
Expand Down
25 changes: 25 additions & 0 deletions knip.jsonc
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
{
"$schema": "https://unpkg.com/knip@5/schema.json",
"entry": [
"src/background/background.ts",
"src/content-scripts/content-script.ts",
"src/inpage/index.ts",
"src/pages/Options/index.tsx",
"src/pages/Popup/index.tsx",
"webpack/utils/build.js",
"webpack/utils/devServer.js"
],
"project": ["src/**/*.{ts,tsx}", "webpack/**/*.js"],
"webpack": {
"config": ["webpack/webpack.config.js"]
},
"ignoreDependencies": [
// Used by webpack to polyfill references to Node.js's `path` module, yet
// not explicitly imported anywhere in the project.
"path",

// Used by the extension, yet not explicitly imported anywhere in the
// project.
"@types/chrome"
]
}
Loading

0 comments on commit 7c5a8e7

Please sign in to comment.