Skip to content

Commit

Permalink
chore(ci): fix build script
Browse files Browse the repository at this point in the history
  • Loading branch information
waynevanson committed Aug 20, 2023
1 parent c80e0ca commit 7bb05a6
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/release.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ jobs:
node-version: 18
cache: pnpm
- run: pnpm install --frozen-lockfile
- run: pnpm run build
- run: pnpm -r run build
- run: pnpm run version
- name: Release
env:
Expand Down
1 change: 1 addition & 0 deletions .github/workflows/test.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -14,4 +14,5 @@ jobs:
node-version: 18
cache: pnpm
- run: pnpm install --frozen-lockfile
- run: pnpm -r run build
- run: pnpm exec jest
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
"scripts": {
"postinstall": "husky install",
"dev": "pnpm -r --filter '@waynevanson/obsidian-plugin-data-entry' run dev",
"build": "pnpm -r --filter '@waynevanson/obsidian-plugin-data-entry' run build",
"build": "pnpm -r run build",
"version": "pnpm -r --filter '@waynevanson/obsidian-plugin-data-entry' run version",
"release": "pnpm -r --filter '@waynevanson/obsidian-plugin-data-entry' exec semantic-release"
},
Expand Down

0 comments on commit 7bb05a6

Please sign in to comment.