Skip to content

Commit

Permalink
Fix library publishing Github action (#129)
Browse files Browse the repository at this point in the history
* set up bun for runtime test

* add build command for publishing
  • Loading branch information
keturiosakys authored Oct 6, 2023
1 parent e17a6a6 commit b44af9d
Showing 1 changed file with 7 additions and 0 deletions.
7 changes: 7 additions & 0 deletions .github/workflows/publish_lib_to_npm.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,11 @@ jobs:
steps:
- uses: actions/checkout@v3

# setup Bun for runtime tests
- uses: oven-sh/setup-bun@v1
with:
bun-version: latest

- name: Setup the project
run: yarn

Expand All @@ -33,6 +38,8 @@ jobs:

- run: yarn

- run: yarn build

- run: yarn release-lib
env:
NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }}

0 comments on commit b44af9d

Please sign in to comment.