From 77c05f062abb11f4b32c870d49eb965074243cff Mon Sep 17 00:00:00 2001 From: Andrey Sitnik Date: Tue, 7 Jun 2022 08:06:30 +0200 Subject: [PATCH] Remove Node.js 10 and 12 support --- .github/workflows/test.yml | 27 --------------------------- package.json | 2 +- 2 files changed, 1 insertion(+), 28 deletions(-) diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 41fdcd23..db2faa8b 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -52,33 +52,6 @@ jobs: run: pnpm unit env: FORCE_COLOR: 2 - old: - runs-on: ubuntu-latest - strategy: - matrix: - node-version: - - 12 - - 10 - name: Node.js ${{ matrix.node-version }} Quick - steps: - - name: Checkout the repository - uses: actions/checkout@v3 - - 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 --frozen-lockfile --ignore-scripts - - name: Run unit tests - run: pnpm unit - env: - FORCE_COLOR: 2 benchmark: name: Benchmark runs-on: ubuntu-latest diff --git a/package.json b/package.json index f1619e23..8b9df6b5 100644 --- a/package.json +++ b/package.json @@ -15,7 +15,7 @@ "start": "vite test/demo/ --open" }, "engines": { - "node": "^10 || ^12 || ^13.7 || ^14 || >=15.0.1" + "node": "^14 || ^16 || >=18" }, "author": "Andrey Sitnik ", "license": "MIT",