Skip to content

Commit

Permalink
ci: fix matrix variable name
Browse files Browse the repository at this point in the history
  • Loading branch information
bgatellier committed Jan 14, 2024
1 parent 27c1c8a commit 0189a52
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/test.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -32,15 +32,15 @@ jobs:
run: node common/scripts/install-run-rush.js rebuild

- name: Test
if: ${{ matrix.node != '18' }}
if: ${{ matrix.node_version != '18' }}
run: node common/scripts/install-run-rush.js test

- name: Test and generate coverage reports
if: ${{ matrix.node == '18' }}
if: ${{ matrix.node_version == '18' }}
run: node common/scripts/install-run-rush.js test --coverage

- name: Archive code coverage reports
if: ${{ matrix.node == '18' }}
if: ${{ matrix.node_version == '18' }}
uses: actions/upload-artifact@v4
with:
name: code-coverage-reports
Expand Down

0 comments on commit 0189a52

Please sign in to comment.