Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -29,3 +29,5 @@ jobs:
cache: "pnpm"
- name: Run Test
run: pnpm test
- name: Build for lint
run: pnpm build:chrome
4 changes: 2 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -7,8 +7,8 @@
"scripts": {
"dev:chrome": "pnpm generate && plasmo dev",
"dev:firefox": "pnpm generate && plasmo dev --target=firefox-mv2",
"build:chrome": "pnpm generate && pnpm lint && plasmo build",
"build:firefox": "pnpm generate && pnpm lint && plasmo build --target=firefox-mv2",
"build:chrome": "pnpm generate && plasmo build && pnpm lint",
"build:firefox": "pnpm generate && plasmo build --target=firefox-mv2 && pnpm lint",
"package:chrome": "pnpm build:chrome && plasmo package",
"package:firefox": "pnpm build:firefox && plasmo package --target=firefox-mv2",
"lint": "pnpm run \"/^lint:.*/\"",
Expand Down