Skip to content

Commit

Permalink
Drop support for node <12 (#511)
Browse files Browse the repository at this point in the history
Co-authored-by: Misha Kaletsky <mmkal@users.noreply.github.com>
  • Loading branch information
mmkal and mmkal committed Sep 24, 2021
1 parent e1cec9c commit 555f481
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand All @@ -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
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -89,7 +89,7 @@
},
"homepage": "https://github.com/sequelize/umzug",
"engines": {
"node": ">=10.0.0"
"node": ">=12"
},
"jest": {
"preset": "ts-jest",
Expand Down

0 comments on commit 555f481

Please sign in to comment.