diff --git a/.github/workflows/pre-release.yaml b/.github/workflows/pre-release.yaml index 40dd6e0..49f3379 100644 --- a/.github/workflows/pre-release.yaml +++ b/.github/workflows/pre-release.yaml @@ -35,6 +35,14 @@ jobs: steps: - name: Checkout uses: actions/checkout@v4 + - name: Install Node + uses: actions/setup-node@v4 + with: + node-version: 20.15.0 + - name: Install pnpm + uses: pnpm/action-setup@v4 + with: + version: 9.13.2 - name: Add target run: rustup target add ${{ matrix.target }} - name: Cross-compile diff --git a/.github/workflows/tests.yaml b/.github/workflows/tests.yaml index f3ed7f4..b7e2b25 100644 --- a/.github/workflows/tests.yaml +++ b/.github/workflows/tests.yaml @@ -20,6 +20,14 @@ jobs: steps: - name: Checkout uses: actions/checkout@v4 + - name: Install Node + uses: actions/setup-node@v4 + with: + node-version: 20.15.0 + - name: Install pnpm + uses: pnpm/action-setup@v4 + with: + version: 9.13.2 - name: Run tests run: cargo test --features dev -- --test-threads=1 - name: Run lints