From 02b3f38073560d6e637fca168a02c173d93b8bc2 Mon Sep 17 00:00:00 2001 From: Andrey Sitnik Date: Sun, 8 Oct 2023 14:56:08 +0200 Subject: [PATCH] Update CI --- .github/workflows/test.yml | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 3ca816e..7018a7b 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -12,15 +12,15 @@ jobs: runs-on: ubuntu-latest steps: - name: Checkout the repository - uses: actions/checkout@v2 + uses: actions/checkout@v4 - name: Install pnpm uses: pnpm/action-setup@v2 with: - version: latest + version: 8 - name: Install Node.js uses: actions/setup-node@v2 with: - node-version: 19 + node-version: 20 cache: pnpm - name: Install dependencies run: pnpm install --frozen-lockfile --ignore-scripts @@ -33,15 +33,14 @@ jobs: node-version: - 18 - 16 - - 14 name: Node.js ${{ matrix.node-version }} Quick steps: - name: Checkout the repository - uses: actions/checkout@v2 + uses: actions/checkout@v4 - name: Install pnpm uses: pnpm/action-setup@v2 with: - version: latest + version: 8 - name: Install Node.js ${{ matrix.node-version }} uses: actions/setup-node@v2 with: @@ -56,11 +55,12 @@ jobs: strategy: matrix: node-version: + - 14 - 12 name: Node.js ${{ matrix.node-version }} Quick steps: - name: Checkout the repository - uses: actions/checkout@v3 + uses: actions/checkout@v4 - name: Install pnpm uses: pnpm/action-setup@v1 with: @@ -72,6 +72,6 @@ jobs: with: node-version: ${{ matrix.node-version }} - name: Install dependencies - run: pnpm install --frozen-lockfile --ignore-scripts + run: pnpm install --no-frozen-lockfile --ignore-scripts - name: Run unit tests run: pnpm unit