From f1265bd5f37b510b6ee36e1eb639be0ad64d9bd5 Mon Sep 17 00:00:00 2001 From: Daniel Lockyer Date: Wed, 4 Jan 2023 11:20:47 +0100 Subject: [PATCH] chore(ci): added Node 18 to testing matrix refs https://github.com/TryGhost/Toolbox/issues/488 - Node 18 is now LTS so we are adding support for it and should be running tests against it --- .github/workflows/unit-test.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/unit-test.yml b/.github/workflows/unit-test.yml index 72f0748a6..c029d9c99 100644 --- a/.github/workflows/unit-test.yml +++ b/.github/workflows/unit-test.yml @@ -9,7 +9,7 @@ jobs: runs-on: ubuntu-latest strategy: matrix: - node: [ 14.x, 16.x ] + node: [ 14.x, 16.x, 18.x ] env: FORCE_COLOR: 1 name: Node ${{ matrix.node }}