Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

chore: drop support for Node.js 10 #7200

Merged
merged 3 commits into from May 17, 2021
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
8 changes: 4 additions & 4 deletions .github/workflows/main.yml
Expand Up @@ -14,9 +14,9 @@ jobs:
runs-on: ubuntu-latest
strategy:
matrix:
# Include all major maintenance + active LTS Node.js versions.
# Include all major maintenance + active LTS + current Node.js versions.
# https://github.com/nodejs/Release#release-schedule
node: [10, 12, 14]
node: [12, 14, 16]
steps:
- name: Checkout
uses: actions/checkout@v2
Expand Down Expand Up @@ -94,7 +94,7 @@ jobs:
with:
# Test only the oldest maintenance LTS Node.js version.
# https://github.com/nodejs/Release#release-schedule
node-version: 10
node-version: 12

- name: Install dependencies
run: |
Expand Down Expand Up @@ -135,7 +135,7 @@ jobs:
with:
# Test only the oldest maintenance LTS Node.js version.
# https://github.com/nodejs/Release#release-schedule
node-version: 10
node-version: 12

- name: Install dependencies
run: |
Expand Down
4 changes: 2 additions & 2 deletions tsconfig.base.json
Expand Up @@ -3,9 +3,9 @@
"esModuleInterop": true,
"allowJs": true,
"checkJs": true,
"target": "ESNext",
"target": "ES2019",
"moduleResolution": "node",
"module": "ESNext",
"module": "ES2015",
"declaration": true,
"declarationMap": true,
"resolveJsonModule": true,
Expand Down