From 555f481f10c6c0c2ab745ba8baeea85d05a8e821 Mon Sep 17 00:00:00 2001 From: Misha Kaletsky <15040698+mmkal@users.noreply.github.com> Date: Thu, 23 Sep 2021 21:44:53 -0400 Subject: [PATCH] Drop support for node <12 (#511) Co-authored-by: Misha Kaletsky --- .github/workflows/ci.yml | 4 ++-- package.json | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index bc75e173..7565092e 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -6,7 +6,7 @@ jobs: runs-on: ubuntu-latest strategy: matrix: - node-version: [12.x, 10.x] + node-version: [14.x, 12.x] sequelize-version: [null, latest] steps: - uses: actions/checkout@v2 @@ -22,4 +22,4 @@ jobs: - run: npm run test -- --coverage - name: Coverage uses: codecov/codecov-action@v1 - if: matrix.node-version == '12.x' && matrix.sequelize-version == null + if: matrix.node-version == '14.x' && matrix.sequelize-version == null diff --git a/package.json b/package.json index 384e82e5..435ed252 100644 --- a/package.json +++ b/package.json @@ -89,7 +89,7 @@ }, "homepage": "https://github.com/sequelize/umzug", "engines": { - "node": ">=10.0.0" + "node": ">=12" }, "jest": { "preset": "ts-jest",