Fix issues between reference counting and the custom JSON.parse
implementation
#819
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: javy NPM package CI | |
on: | |
push: | |
branches: | |
- main | |
pull_request: | |
jobs: | |
test: | |
name: javy_npm_test | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Install wasmtime-cli | |
env: | |
WASMTIME_VERSION: 6.0.1 | |
run: | | |
wget -nv 'https://github.com/bytecodealliance/wasmtime/releases/download/v${{ env.WASMTIME_VERSION }}/wasmtime-v${{ env.WASMTIME_VERSION }}-x86_64-linux.tar.xz' -O /tmp/wasmtime.tar.xz | |
mkdir /tmp/wasmtime | |
tar xvf /tmp/wasmtime.tar.xz --strip-components=1 -C /tmp/wasmtime | |
echo "/tmp/wasmtime" >> $GITHUB_PATH | |
- run: npm install | |
working-directory: npm/javy | |
- run: npm test | |
working-directory: npm/javy |