Skip to content

Commit

Permalink
Merge pull request #3 from konkerdotdev/fix-cd-2
Browse files Browse the repository at this point in the history
Add missing cd pnpm script
  • Loading branch information
konker committed Oct 18, 2023
2 parents 140e32b + 88eea60 commit fa91b20
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 3 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/cd.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,9 +17,9 @@ jobs:
name: CD
steps:
- name: Checkout
uses: actions/checkout@v2
uses: actions/checkout@v3
- name: Setup Node
uses: actions/setup-node@v2
uses: actions/setup-node@v3
with:
node-version: '20'
- name: Setup pnpm
Expand Down
3 changes: 2 additions & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -61,6 +61,7 @@
"lint-check": "pnpm run eslint-check && pnpm run prettier-check",
"lint-fix": "pnpm run eslint-fix && pnpm run prettier-fix",
"pre-push": "pnpm run lint-check && pnpm run typecheck",
"ci": "pnpm run lint-check && pnpm run typecheck && pnpm run test && pnpm run build"
"ci": "pnpm run lint-check && pnpm run typecheck && pnpm run test && pnpm run build",
"cd": "pnpm run ci && pnpm publish --access public"
}
}

0 comments on commit fa91b20

Please sign in to comment.