From 993534c57cc7009363a740bbbb04a0e4e56c7f0c Mon Sep 17 00:00:00 2001 From: Manuel <5673677+mtrezza@users.noreply.github.com> Date: Fri, 21 Apr 2023 16:03:59 +0200 Subject: [PATCH] feat: Add support for Node 16, 18, remove support for Node 12, 15 (#189) BREAKING CHANGE: Removes support for Node 12 and 15 which have reached their End-of-Life date and are not officially maintained anymore. --- .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 1c677ba..8160063 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -11,7 +11,7 @@ jobs: runs-on: ubuntu-latest strategy: matrix: - node: [ '12', '14', '15' ] + node: [ '14', '16', '18' ] timeout-minutes: 30 env: COVERALLS_REPO_TOKEN: ${{ secrets.COVERALLS_REPO_TOKEN }}