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 59bc7b7 commit 5fe48aeCopy full SHA for 5fe48ae
2 files changed
.github/workflows/pr.yml
@@ -18,14 +18,10 @@ jobs:
18
19
- uses: pnpm/action-setup@v2
20
21
- - run: npx publint --strict
22
-
23
- uses: actions/setup-node@v4
24
with:
25
node-version: ${{ matrix.version }}
26
registry-url: https://registry.npmjs.org/
27
cache: 'pnpm'
28
29
- - run: make test
30
- env:
31
- NODE_ENV: development
+ - run: make test publint
Makefile
@@ -28,3 +28,7 @@ dev: node_modules
.PHONY: pretty
pretty: node_modules
pnpm exec prettier --write .
+
32
+.PHONY: publint
33
+publint: dist
34
+ npx publint --strict
0 commit comments