File tree Expand file tree Collapse file tree 1 file changed +11
-2
lines changed Expand file tree Collapse file tree 1 file changed +11
-2
lines changed Original file line number Diff line number Diff line change @@ -862,15 +862,24 @@ jobs:
862862 # Install Node.js and Emscripten
863863 source .ci/scripts/setup-emscripten.sh
864864
865+ export PNPM_VERSION=10.24.0
866+
867+ curl -fsSL https://get.pnpm.io/install.sh | env PNPM_VERSION=$PNPM_VERSION SHELL="$(which bash)" sh -
868+
869+ export PNPM_HOME="$HOME/.local/share/pnpm"
870+ export PATH="$PNPM_HOME:$PATH"
871+
872+ pnpm --version
873+
865874 # Test selective build
866875 bash scripts/build_wasm_tests.sh ${{ matrix.enable-etdump }}
867876
868877 # Install Jest
869878 cd cmake-out-wasm/extension/wasm/test
870- npm install --save-dev jest
879+ pnpm add -D jest@30.2.0 --ignore-scripts
871880
872881 # Run unit test
873- npm test
882+ pnpm test
874883
875884 unittest-nxp-neutron :
876885 uses : pytorch/test-infra/.github/workflows/linux_job_v2.yml@main
You can’t perform that action at this time.
0 commit comments