diff --git a/.github/workflows/unit-tests.yaml b/.github/workflows/unit-tests.yaml index 61e08320..afe64ac7 100644 --- a/.github/workflows/unit-tests.yaml +++ b/.github/workflows/unit-tests.yaml @@ -21,6 +21,7 @@ jobs: node-version: - '16.x' - '18.x' + - '20.x' steps: - name: Checkout Repository uses: actions/checkout@v3 @@ -52,14 +53,14 @@ jobs: env: CI: true - name: Save Coverage Results - if: matrix.node-version == '18.x' + if: matrix.node-version == '20.x' uses: actions/upload-artifact@v3 with: name: coverage-app path: ${{ github.workspace }}/app/coverage retention-days: 1 - name: Monitor Coverage - if: "matrix.node-version == '18.x' && ! github.event.pull_request.head.repo.fork" + if: "matrix.node-version == '20.x' && ! github.event.pull_request.head.repo.fork" uses: slavcodev/coverage-monitor-action@v1 with: comment_mode: update @@ -84,6 +85,7 @@ jobs: node-version: - '16.x' - '18.x' + - '20.x' steps: - name: Checkout Repository uses: actions/checkout@v3 @@ -115,14 +117,14 @@ jobs: env: CI: true - name: Save Coverage Results - if: matrix.node-version == '18.x' + if: matrix.node-version == '20.x' uses: actions/upload-artifact@v3 with: name: coverage-frontend path: ${{ github.workspace }}/frontend/coverage retention-days: 1 - name: Monitor Coverage - if: "matrix.node-version == '18.x' && ! github.event.pull_request.head.repo.fork" + if: "matrix.node-version == '20.x' && ! github.event.pull_request.head.repo.fork" uses: slavcodev/coverage-monitor-action@v1 with: comment_mode: update