From bc97f8487c848454c2876e9a5cbeb1c624af7a3d Mon Sep 17 00:00:00 2001 From: Eduard Aksamitov Date: Tue, 6 Aug 2024 21:35:34 +0300 Subject: [PATCH] ci(test): bump deps --- .github/workflows/test.yml | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index fca48ae..b6e8883 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -16,18 +16,18 @@ jobs: uses: actions/checkout@v4 - name: Install pnpm - uses: pnpm/action-setup@v2 + uses: pnpm/action-setup@v4 with: - version: 8 + version: 9 - name: Install Node.js - uses: actions/setup-node@v3 + uses: actions/setup-node@v4 with: - node-version: 20 + node-version: 22 cache: pnpm - name: Install dependencies - run: pnpm install --frozen-lockfile --ignore-scripts + run: pnpm install --ignore-scripts - name: Run tests run: pnpm test @@ -36,25 +36,25 @@ jobs: runs-on: ubuntu-latest strategy: matrix: - node-version: [18] + node-version: [20, 18] name: Node.js ${{ matrix.node-version }} Quick steps: - name: Checkout the repository uses: actions/checkout@v4 - name: Install pnpm - uses: pnpm/action-setup@v2 + uses: pnpm/action-setup@v4 with: - version: 8 + version: 9 - 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 test:coverage