diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 001d724..d85fcd5 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -6,8 +6,8 @@ jobs: runs-on: ${{ matrix.os }} strategy: matrix: - os: [ubuntu-latest, macos-latest, windows-latest] - node-version: [20.x, 21.x, 22.x] + os: [ubuntu-latest] + node-version: [20.x, 21.x] steps: - name: Check out repository code uses: actions/checkout@v3 @@ -25,10 +25,10 @@ jobs: - name: Test run: npm run test - name: Upload coverage report - if: ${{ matrix.os == 'ubuntu-latest' && matrix.node-version == '19.x' }} + if: ${{ matrix.os == 'ubuntu-latest' && matrix.node-version == '21.x' }} uses: codecov/codecov-action@v3 - name: SonarCloud Scan - if: ${{ matrix.os == 'ubuntu-latest' && matrix.node-version == '19.x' }} + if: ${{ matrix.os == 'ubuntu-latest' && matrix.node-version == '21.x' }} uses: sonarsource/sonarcloud-github-action@master env: GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}