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

chore: maintenance update js wrapper #296

Open
wants to merge 13 commits into
base: main
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from 11 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
19 changes: 10 additions & 9 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -241,6 +241,10 @@ jobs:
- name: Checkout
uses: actions/checkout@v4

- uses: pnpm/action-setup@v4
with:
version: 9

- name: Set up Node.JS 18.x
uses: actions/setup-node@v4
with:
Expand All @@ -253,19 +257,16 @@ jobs:
name: library-linux-x86_64

- name: Install dependencies
run: yarn install
run: pnpm install

- name: Build
run: yarn build
run: pnpm build

- name: Lint
run: yarn lint

- name: Check format
run: yarn check-format
run: pnpm style:check

- name: Check types
run: yarn check-types
run: pnpm types:check

- name: Run local node pool
run: |
Expand All @@ -279,8 +280,8 @@ jobs:
- name: Run tests
env:
# binary is downloaded to root of repository
LIB_INDY_VDR_PATH: ../../../
run: yarn test
LIB_INDY_VDR_PATH: ../../
run: pnpm test

- name: Publish JavaScript Wrapper
if: |
Expand Down
1 change: 0 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
@@ -1,4 +1,3 @@
Cargo.lock
target
node_modules
.idea
Expand Down
Loading
Loading