Skip to content

Commit

Permalink
Drop nodejs 10 and add nodejs 14 to the build matrix
Browse files Browse the repository at this point in the history
  • Loading branch information
nblagoev committed Mar 17, 2021
1 parent 7b1ce81 commit 5eef7cd
Show file tree
Hide file tree
Showing 5 changed files with 5 additions and 8 deletions.
5 changes: 1 addition & 4 deletions .github/dependabot.yml
Expand Up @@ -13,7 +13,4 @@ updates:
ignore:
- dependency-name: "@types/node"
versions:
- ">= 12.a, < 13"
- dependency-name: "@types/node"
versions:
- ">= 13.a, < 14"
- ">= 15"
2 changes: 1 addition & 1 deletion .github/workflows/build-pr.yml
Expand Up @@ -8,7 +8,7 @@ jobs:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [10.x, 12.x]
node-version: [12.x, 14.x]
steps:
- uses: actions/checkout@v2
- name: Use Node.js ${{ matrix.node-version }}
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/build.yml
Expand Up @@ -10,7 +10,7 @@ jobs:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [10.x, 12.x]
node-version: [12.x, 14.x]
steps:
- uses: actions/checkout@v2
- name: Use Node.js ${{ matrix.node-version }}
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/draft-release.yml
Expand Up @@ -58,7 +58,7 @@ jobs:
needs: check
strategy:
matrix:
node-version: [10.x, 12.x]
node-version: [12.x, 14.x]
steps:
- uses: actions/checkout@v2

Expand Down
2 changes: 1 addition & 1 deletion package.json
Expand Up @@ -64,7 +64,7 @@
"typescript": "^4.0.2"
},
"engines": {
"node": ">=10.0.0"
"node": ">=12.0.0"
},
"jest": {
"preset": "ts-jest",
Expand Down

0 comments on commit 5eef7cd

Please sign in to comment.