diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index d5ce946d..ba2b29ed 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -14,16 +14,16 @@ jobs: - name: Checkout the repository uses: actions/checkout@v4 - name: Install pnpm - uses: pnpm/action-setup@v2 + uses: pnpm/action-setup@v3 with: version: 8 - name: Install Node.js - uses: actions/setup-node@v3 + uses: actions/setup-node@v4 with: node-version: 21 cache: pnpm - name: Install dependencies - run: pnpm install --frozen-lockfile --ignore-scripts + run: pnpm install --ignore-scripts - name: Run tests run: pnpm test short: @@ -38,16 +38,16 @@ jobs: - name: Checkout the repository uses: actions/checkout@v4 - name: Install pnpm - uses: pnpm/action-setup@v2 + uses: pnpm/action-setup@v3 with: version: 8 - name: Install Node.js ${{ matrix.node-version }} - uses: actions/setup-node@v3 + uses: actions/setup-node@v4 with: node-version: ${{ matrix.node-version }} cache: pnpm - name: Install dependencies - run: pnpm install --frozen-lockfile --ignore-scripts + run: pnpm install --ignore-scripts - name: Run unit tests run: pnpm bnt benchmark: @@ -57,15 +57,15 @@ jobs: - name: Checkout the repository uses: actions/checkout@v4 - name: Install pnpm - uses: pnpm/action-setup@v2 + uses: pnpm/action-setup@v3 with: version: 8 - name: Install Node.js - uses: actions/setup-node@v3 + uses: actions/setup-node@v4 with: node-version: 20 cache: pnpm - name: Install dependencies - run: pnpm install --frozen-lockfile --ignore-scripts + run: pnpm install --ignore-scripts - name: Run benchmark run: node ./test/benchmark.js