From 4c1ad387eb690c959a318287cc08dfadfe6ca011 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E4=B8=89=E5=92=B2=E6=99=BA=E5=AD=90=20Kevin=20Deng?= Date: Sun, 19 Nov 2023 17:51:43 +0800 Subject: [PATCH] ci!: drop node 16 BREAKING CHANGE: Drop node < 18 --- .github/workflows/ci.yml | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 5ff0a564..dde0600e 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -8,12 +8,10 @@ on: jobs: test: - if: "!contains(github.event.head_commit.message, 'ci skip')" - strategy: matrix: os: [ubuntu-latest, windows-latest] - node-version: [16.x, 18.x, 20.x] + node-version: [18.x, 20.x] runs-on: ${{ matrix.os }} @@ -35,7 +33,7 @@ jobs: # Runs a set of commands using the runners shell - name: Build and Test - run: npm test + run: pnpm test release: runs-on: ubuntu-latest