Skip to content

Commit

Permalink
add: workflow build step
Browse files Browse the repository at this point in the history
  • Loading branch information
notunderctrl committed Feb 2, 2024
1 parent bd7b38c commit 3608da1
Show file tree
Hide file tree
Showing 6 changed files with 14 additions and 2 deletions.
3 changes: 3 additions & 0 deletions .github/workflows/dev-commandkit.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -38,6 +38,9 @@ jobs:
env:
DEBIAN_FRONTEND: noninteractive

- name: 🧱 Build
run: pnpm --filter './packages/commandkit' run build

- name: 🚚 Publish
run: |
cd packages/commandkit
Expand Down
3 changes: 3 additions & 0 deletions .github/workflows/dev-create-commandkit.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -38,6 +38,9 @@ jobs:
env:
DEBIAN_FRONTEND: noninteractive

- name: 🧱 Build
run: pnpm --filter './packages/create-commandkit' run build

- name: 🚚 Publish
run: |
cd packages/create-commandkit
Expand Down
3 changes: 3 additions & 0 deletions .github/workflows/next-commandkit.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -38,6 +38,9 @@ jobs:
env:
DEBIAN_FRONTEND: noninteractive

- name: 🧱 Build
run: pnpm --filter './packages/commandkit' run build

- name: 🚚 Publish
run: |
cd packages/commandkit
Expand Down
3 changes: 3 additions & 0 deletions .github/workflows/next-create-commandkit.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -38,6 +38,9 @@ jobs:
env:
DEBIAN_FRONTEND: noninteractive

- name: 🧱 Build
run: pnpm --filter './packages/create-commandkit' run build

- name: 🚚 Publish
run: |
cd packages/create-commandkit
Expand Down
2 changes: 1 addition & 1 deletion packages/commandkit/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@
"lint": "tsc --noEmit",
"dev": "tsup --watch",
"build": "tsup",
"deploy": "npm publish",
"deploy:package": "npm publish",
"test": "vitest",
"test:dev": "cd ./tests && node ../bin/index.mjs dev",
"test:build": "cd ./tests && node ../bin/index.mjs build",
Expand Down
2 changes: 1 addition & 1 deletion packages/create-commandkit/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@
"lint": "tsc --noEmit",
"dev": "tsup --watch",
"build": "tsup",
"deploy": "npm publish"
"deploy:package": "npm publish"
},
"dependencies": {
"@clack/prompts": "^0.7.0",
Expand Down

0 comments on commit 3608da1

Please sign in to comment.