We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ce9e503 commit 04d75d1Copy full SHA for 04d75d1
.github/workflows/npm-checks.yml
@@ -34,8 +34,11 @@ jobs:
34
- name: Install dependencies
35
run: pnpm install
36
37
+ - name: Build showcase
38
+ run: pnpm build:showcase-lib
39
+
40
- name: Run lint on all packages
- run: pnpm -r lint
41
+ run: pnpm lint
42
43
- name: Run format check on all packages
- run: pnpm -r fmt:check
44
+ run: pnpm fmt:check
package.json
@@ -5,6 +5,7 @@
5
"js/react"
6
],
7
"scripts": {
8
+ "build:showcase-lib": "pnpm run -r --filter \"*showcase\" build",
9
"lint": "pnpm run -r lint",
10
"fmt": "npx prettier --write .",
11
"fmt:check": "npx prettier --check ."
0 commit comments