Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix: add node install step & resolve npm issues #14

Merged
merged 1 commit into from
Feb 5, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 5 additions & 3 deletions .github/workflows/release-please.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -15,12 +15,10 @@ jobs:
outputs:
releaseCreated: ${{ steps.release.outputs.release_created }}
steps:
- uses: google-github-actions/release-please-action@v3
- uses: google-github-actions/release-please-action@v4
id: release
with:
release-type: node
package-name: catapulta-verify
pull-request-header: "I have created a release"

release-node:
runs-on: ubuntu-latest
Expand All @@ -30,6 +28,10 @@ jobs:
steps:
- uses: actions/checkout@v4
- uses: oven-sh/setup-bun@v1
- uses: actions/setup-node@v3
with:
node-version: 20
registry-url: "https://registry.npmjs.org"
- name: Install dependencies
run: bun install
- name: Build
Expand Down
7 changes: 5 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,10 @@
"name": "catapulta-verify",
"version": "1.0.2",
"author": "@kartojal <[email protected]> (https://catapulta.sh/)",
"repository": "github:catapulta-sh/catapulta-verify",
kartojal marked this conversation as resolved.
Show resolved Hide resolved
"repository": {
"type": "git",
"url": "git+https://github.com/catapulta-sh/catapulta-verify.git"
},
"main": "./out/index.mjs",
"private": false,
"publishConfig": {
Expand All @@ -23,7 +26,7 @@
"typescript": "^5.0.0"
},
"bin": {
"catapulta-verify": "./out/index.mjs"
"catapulta-verify": "out/index.mjs"
kartojal marked this conversation as resolved.
Show resolved Hide resolved
},
"bugs": {
"url": "https://github.com/catapulta-sh/catapulta-verify/issues",
Expand Down