Skip to content

Commit 416418f

Browse files
authored
Merge pull request #75 from kimuraz/dev
build: fix ci command on release
2 parents 5fe1d88 + 1ee353c commit 416418f

File tree

1 file changed

+4
-2
lines changed

1 file changed

+4
-2
lines changed

.github/workflows/release.yml

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,8 @@ jobs:
1616
uses: pnpm/action-setup@v4
1717
with:
1818
version: 9.9.0
19-
- run: pnpm ci
19+
- run: pnpm lint
20+
- run: pnpm test
2021
- run: pnpm run build
2122

2223
publish-npm:
@@ -32,7 +33,8 @@ jobs:
3233
uses: pnpm/action-setup@v4
3334
with:
3435
version: 9.9.0
35-
- run: pnpm ci
36+
- run: pnpm lint
37+
- run: pnpm test
3638
- run: pnpm publish
3739
env:
3840
NODE_AUTH_TOKEN: ${{secrets.npm_token}}

0 commit comments

Comments
 (0)