Skip to content

Commit

Permalink
fix: update the Node version in the Actions
Browse files Browse the repository at this point in the history
  • Loading branch information
WalterMoar committed Dec 18, 2024
1 parent 280e7d9 commit 48e777f
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions .github/workflows/unit-tests.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ jobs:
strategy:
fail-fast: true
matrix:
version: [18]
version: [20]
steps:
- name: Checkout Repository
uses: actions/checkout@v4
Expand Down Expand Up @@ -49,14 +49,14 @@ jobs:
env:
CI: true
- name: Save Coverage Results
if: matrix.version == 18
if: matrix.version == 20
uses: actions/upload-artifact@v4
with:
name: coverage-app
path: ${{ github.workspace }}/app/coverage
retention-days: 1
- name: Monitor Coverage
if: "matrix.version == 18 && ! github.event.pull_request.head.repo.fork"
if: "matrix.version == 20 && ! github.event.pull_request.head.repo.fork"
uses: slavcodev/coverage-monitor-action@v1
with:
comment_mode: update
Expand All @@ -78,7 +78,7 @@ jobs:
strategy:
fail-fast: true
matrix:
version: [18]
version: [20]
steps:
- name: Checkout Repository
uses: actions/checkout@v4
Expand Down Expand Up @@ -106,14 +106,14 @@ jobs:
env:
CI: true
- name: Save Coverage Results
if: matrix.version == 18
if: matrix.version == 20
uses: actions/upload-artifact@v4
with:
name: coverage-frontend
path: ${{ github.workspace }}/app/frontend/coverage
retention-days: 1
- name: Monitor Coverage
if: "matrix.version == 18 && ! github.event.pull_request.head.repo.fork"
if: "matrix.version == 20 && ! github.event.pull_request.head.repo.fork"
uses: slavcodev/coverage-monitor-action@v1
with:
comment_mode: update
Expand Down

0 comments on commit 48e777f

Please sign in to comment.