Skip to content

Commit e7bbeb1

Browse files
chore: Removed LTS version (#978)
* chore: removed LTS version * chore: removing lts from cloudscan * chore: completely removed LTS
1 parent 1f6d8eb commit e7bbeb1

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

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

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ jobs:
1717
timeout-minutes: 20
1818
strategy:
1919
matrix:
20-
node: [ 14, 16, 18, lts/* ]
20+
node: [ 14, 16, 18 ]
2121
steps:
2222
- name: Checkout twilio-node
2323
uses: actions/checkout@v3
@@ -49,7 +49,7 @@ jobs:
4949
npm run test
5050
5151
- name: SonarCloud Scan
52-
if: ${{ (github.event_name == 'pull_request' || github.ref_type == 'branch') && matrix.node == 'lts/*' && !github.event.pull_request.head.repo.fork }}
52+
if: ${{ (github.event_name == 'pull_request' || github.ref_type == 'branch') && matrix.node == '18' && !github.event.pull_request.head.repo.fork }}
5353
uses: SonarSource/sonarcloud-github-action@master
5454
env:
5555
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} # Needed to get PR information, if any
@@ -69,7 +69,7 @@ jobs:
6969
- name: Set up Node
7070
uses: actions/setup-node@v3
7171
with:
72-
node-version: lts/*
72+
node-version: 18
7373

7474
- run: npm install
7575

0 commit comments

Comments
 (0)