Skip to content

Commit b471067

Browse files
author
childish-sambino
authoredJan 13, 2023
feat!: Merge branch '4.0.0-rc' to main (#883)
1 parent d9244e3 commit b471067

File tree

2,216 files changed

+277714
-600804
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

2,216 files changed

+277714
-600804
lines changed
 

‎.eslintrc.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -117,7 +117,7 @@
117117
],
118118
"quotes": [
119119
2,
120-
"single"
120+
"double"
121121
],
122122
"indent": [
123123
2,

‎.github/workflows/test-and-deploy.yml

+11-1
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ jobs:
1717
timeout-minutes: 20
1818
strategy:
1919
matrix:
20-
node: [ 6, 8, 10, 12, 14, 16, lts/* ]
20+
node: [ 14, 16, 18, lts/* ]
2121
steps:
2222
- name: Checkout twilio-node
2323
uses: actions/checkout@v3
@@ -33,6 +33,16 @@ jobs:
3333
- name: Run Unit Tests
3434
run: npm run ci
3535

36+
- name: Run Cluster Tests
37+
if: (!github.event.pull_request.head.repo.fork)
38+
env:
39+
TWILIO_ACCOUNT_SID: ${{ secrets.TWILIO_ACCOUNT_SID }}
40+
TWILIO_API_KEY: ${{ secrets.TWILIO_CLUSTER_TEST_API_KEY}}
41+
TWILIO_API_SECRET: ${{ secrets.TWILIO_CLUSTER_TEST_API_KEY_SECRET }}
42+
TWILIO_FROM_NUMBER: ${{ secrets.TWILIO_FROM_NUMBER }}
43+
TWILIO_TO_NUMBER: ${{ secrets.TWILIO_TO_NUMBER }}
44+
run: npm run cluster
45+
3646
- name: SonarCloud Scan
3747
if: ${{ (github.event_name == 'pull_request' || github.ref_type == 'branch') && matrix.node == 'lts/*' && !github.event.pull_request.head.repo.fork }}
3848
uses: SonarSource/sonarcloud-github-action@master

0 commit comments

Comments
 (0)
Please sign in to comment.