Skip to content

Commit fadaff2

Browse files
committed
Fix conditional in CI config
1 parent 599a16f commit fadaff2

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

.github/workflows/ci.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -25,10 +25,10 @@ jobs:
2525
- name: Test
2626
run: npm run test
2727
- name: Upload coverage report
28-
if: ${{ matrix.os == 'ubuntu-latest' && matrix.node-version == '16.x' }}
28+
if: ${{ matrix.os == 'ubuntu-latest' && matrix.node-version == '19.x' }}
2929
uses: codecov/codecov-action@v3
3030
- name: SonarCloud Scan
31-
if: ${{ matrix.os == 'ubuntu-latest' && matrix.node-version == '16.x' }}
31+
if: ${{ matrix.os == 'ubuntu-latest' && matrix.node-version == '19.x' }}
3232
uses: sonarsource/sonarcloud-github-action@master
3333
env:
3434
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}

0 commit comments

Comments
 (0)