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: upgrade supported language versions #736

Merged
merged 1 commit into from Feb 8, 2022
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
6 changes: 3 additions & 3 deletions .github/workflows/test-and-deploy.yml
Expand Up @@ -17,7 +17,7 @@ jobs:
timeout-minutes: 20
strategy:
matrix:
node: [ 6, 8, 10, lts/* ]
node: [ 6, 8, 10, 12, 14, 16, lts/* ]
steps:
- name: Checkout twilio-node
uses: actions/checkout@v2
Expand All @@ -32,7 +32,7 @@ jobs:
- run: npm install
- name: Run Unit Tests
run: npm run ci

- name: SonarCloud Scan
if: ${{ (github.event_name == 'pull_request' || github.ref_type == 'branch') && matrix.node == 'lts/*' && !github.event.pull_request.head.repo.fork }}
uses: SonarSource/sonarcloud-github-action@master
Expand All @@ -54,7 +54,7 @@ jobs:
- name: Set up Node
uses: actions/setup-node@v2
with:
node-version: 8
node-version: lts/*

- run: npm install

Expand Down
1 change: 1 addition & 0 deletions README.md
Expand Up @@ -26,6 +26,7 @@ This library supports the following Node.js implementations:
* Node.js 10
* Node.js 12
* Node.js 14
* Node.js 16

TypeScript is supported for TypeScript version 2.9 and above.

Expand Down