From a7b0107ee520698579ae379376e0286ebb5dcd85 Mon Sep 17 00:00:00 2001 From: Andrey Sitnik Date: Mon, 20 Nov 2023 01:28:15 +0100 Subject: [PATCH] Remove unsupported Node.js from CI --- .github/workflows/test.yml | 26 -------------------------- 1 file changed, 26 deletions(-) diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index e0d2c0c..2002215 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -50,29 +50,3 @@ jobs: run: pnpm install --frozen-lockfile --ignore-scripts - name: Run unit tests run: pnpm unit - old: - runs-on: ubuntu-latest - strategy: - matrix: - node-version: - - 14 - - 12 - - 10 - name: Node.js ${{ matrix.node-version }} Quick - steps: - - name: Checkout the repository - uses: actions/checkout@v4 - - name: Install pnpm - uses: pnpm/action-setup@v1 - with: - version: 3 - env: - ACTIONS_ALLOW_UNSECURE_COMMANDS: true - - name: Install Node.js ${{ matrix.node-version }} - uses: actions/setup-node@v3 - with: - node-version: ${{ matrix.node-version }} - - name: Install dependencies - run: pnpm install --no-frozen-lockfile --ignore-scripts - - name: Run unit tests - run: pnpm unit