From e3d9338708450b3184a871f2c97f902dcf11b896 Mon Sep 17 00:00:00 2001 From: Robert McGovern Date: Mon, 6 Feb 2023 15:06:12 +0000 Subject: [PATCH] Remove Node 14 from Github action The chroma-highlight package I refer to only supports node >= 16. --- .github/workflows/ci.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index f26595d..a679041 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -8,7 +8,7 @@ jobs: strategy: matrix: os: ["ubuntu-latest", "macos-latest", "windows-latest"] - node: ["14", "16", "18"] + node: ["16", "18"] name: Node.js ${{ matrix.node }} on ${{ matrix.os }} steps: - uses: actions/checkout@v3