From c8e6c471c7092985cf0908970bac644470ae3cef Mon Sep 17 00:00:00 2001 From: dominikg Date: Mon, 8 May 2023 00:08:52 +0200 Subject: [PATCH] fix: update ci to only use node >=18 --- .github/workflows/ci.yml | 23 +++++++---------------- 1 file changed, 7 insertions(+), 16 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 91cd471aa2..9b8220defb 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -12,23 +12,17 @@ jobs: strategy: matrix: include: - - node-version: 14 + - node-version: 18 os: ubuntu-latest - - node-version: 14 + - node-version: 18 os: windows-latest - - node-version: 14 - os: macOS-latest - - node-version: 16 - os: ubuntu-latest - node-version: 18 - os: ubuntu-latest + os: macOS-latest - node-version: 20 os: ubuntu-latest steps: - uses: actions/checkout@v3 - uses: pnpm/action-setup@v2.2.4 - with: - version: ${{ matrix.node-version == 14 && 7 || 8 }} - uses: actions/setup-node@v3 with: node-version: ${{ matrix.node-version }} @@ -46,6 +40,7 @@ jobs: - uses: pnpm/action-setup@v2.2.4 - uses: actions/setup-node@v3 with: + node-version: 18 cache: pnpm - run: 'pnpm i && pnpm lint' Unit: @@ -54,16 +49,12 @@ jobs: strategy: matrix: include: - - node-version: 14 + - node-version: 18 os: ubuntu-latest - - node-version: 14 + - node-version: 18 os: windows-latest - - node-version: 14 - os: macOS-latest - - node-version: 16 - os: ubuntu-latest - node-version: 18 - os: ubuntu-latest + os: macOS-latest - node-version: 20 os: ubuntu-latest steps: