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

Pin form_urlencoded #1138

Merged
merged 11 commits into from
Mar 8, 2023
Merged
Show file tree
Hide file tree
Changes from 10 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
4 changes: 2 additions & 2 deletions .github/workflows/build-and-test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -159,7 +159,7 @@ jobs:
needs: check-for-run-condition
if: ${{ needs.check-for-run-condition.outputs.should-run == 'true' }}
# owner/repository of workflow has to be static, see https://github.community/t/env-variables-in-uses/17466
uses: iotaledger/identity.rs/.github/workflows/shared-build-wasm.yml@dev
uses: iotaledger/identity.rs/.github/workflows/shared-build-wasm.yml@support/v0.6
with:
output-artifact-name: identity-wasm-bindings-build

Expand Down Expand Up @@ -202,6 +202,6 @@ jobs:
- build-wasm
if: ${{ needs.check-for-run-condition.outputs.should-run == 'true' }}
# owner/repository of workflow has to be static, see https://github.community/t/env-variables-in-uses/17466
uses: iotaledger/identity.rs/.github/workflows/shared-build-and-test-stronghold-nodejs.yml@dev
uses: iotaledger/identity.rs/.github/workflows/shared-build-and-test-stronghold-nodejs.yml@support/v0.6
with:
input-artifact-name: identity-wasm-bindings-build
Original file line number Diff line number Diff line change
Expand Up @@ -74,7 +74,7 @@ jobs:
setup: |
# actions/setup-node@v2 does not work for musl, install manually.
# build-base required for libsodium compilation.
apk add --no-cache nodejs npm build-base
apk add --no-cache nodejs@16 npm build-base
eike-hass marked this conversation as resolved.
Show resolved Hide resolved
build: |
export NPM_BUILD_NAPI_ARGS=--target=x86_64-unknown-linux-musl
npm run build && strip dist/*.node
Expand Down
2 changes: 2 additions & 0 deletions bindings/stronghold-nodejs/.gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -12,3 +12,5 @@ npm/
# compiled files from napi and ts
napi-dist/
dist/

!examples/build/rollup-plugin-dts/dist/
Loading