diff --git a/.github/workflows/test-and-deploy.yml b/.github/workflows/test-and-deploy.yml index 1a9a777f6e..3f92c824c0 100644 --- a/.github/workflows/test-and-deploy.yml +++ b/.github/workflows/test-and-deploy.yml @@ -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 @@ -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 @@ -54,7 +54,7 @@ jobs: - name: Set up Node uses: actions/setup-node@v2 with: - node-version: 8 + node-version: lts/* - run: npm install diff --git a/README.md b/README.md index 1cd05b977d..b8be1bc93b 100644 --- a/README.md +++ b/README.md @@ -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.