From ada28188a3eb2ce2bd3c1c27d1941fed93b3fe8e Mon Sep 17 00:00:00 2001 From: Daniel Lockyer Date: Mon, 1 May 2023 15:07:20 +0200 Subject: [PATCH] Dropped Node 14 from CI refs https://github.com/TryGhost/Toolbox/issues/570 - Node 14 is now EOL so we don't need to support and run tests for it --- .github/workflows/test.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index cd190244e3..e45aa3c360 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -145,7 +145,7 @@ jobs: if: github.event_name == 'push' || (github.event_name == 'pull_request' && !startsWith(github.head_ref, 'renovate/')) strategy: matrix: - node: [ '14.18.0', '16.13.0', '18.12.1' ] + node: [ '16.13.0', '18.12.1' ] name: Unit Tests (Node ${{ matrix.node }}) steps: - uses: actions/checkout@v3 @@ -180,7 +180,7 @@ jobs: if: github.event_name == 'push' || (github.event_name == 'pull_request' && !startsWith(github.head_ref, 'renovate/')) strategy: matrix: - node: [ '14.18.0', '16.13.0', '18.12.1' ] + node: [ '16.13.0', '18.12.1' ] env: - DB: mysql8 NODE_ENV: testing-mysql