Skip to content

Commit

Permalink
Merge pull request #31 from YiCChi/develop
Browse files Browse the repository at this point in the history
develop
  • Loading branch information
YiCChi authored Dec 2, 2023
2 parents 320ac39 + 5ac775c commit 9ada129
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 5 deletions.
9 changes: 5 additions & 4 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,15 +18,16 @@ jobs:
command: manifest
default-branch: main
# The logic below handles the npm publication:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
# these if statements ensure that a publication only occurs when
# a new release is created:
- uses: actions/setup-node@v4
with:
node-version: 20
registry-url: https://npm.pkg.github.com/
- uses: pnpm/action-setup@v2
with:
version: 8
- uses: actions/setup-node@v3
with:
node-version: 20
- run: pnpm i
if: ${{ steps.release.outputs.releases_created }}
- run: pnpm run build
Expand Down
2 changes: 1 addition & 1 deletion packages/is-even/src/lib/input.tsx
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
export function Input() {
return <input type="number" />;
return <input type="text" />;
}

0 comments on commit 9ada129

Please sign in to comment.