Skip to content

Commit

Permalink
Suppress error finish because too many errors become just a noise (#3)
Browse files Browse the repository at this point in the history
  • Loading branch information
ybiquitous authored Jul 12, 2024
1 parent b728a00 commit bd08298
Showing 1 changed file with 8 additions and 1 deletion.
9 changes: 8 additions & 1 deletion .github/workflows/test-ecosystem.yml
Original file line number Diff line number Diff line change
Expand Up @@ -125,10 +125,17 @@ jobs:
echo "pnpm: $(pnpm --version)"
- name: Install dependencies
continue-on-error: true
run: npm install --no-audit

- name: Install Stylelint ${{ matrix.stylelint-version }}
continue-on-error: true
run: npm install --no-audit --no-save ${{ matrix.stylelint-version }}

- name: Run test
run: npm test
continue-on-error: true
env:
PACKAGE: ${{ matrix.package }}
PACKAGE_URL: ${{ steps.repo-info.outputs.url }}
run: |
npm test || echo "::error title=${PACKAGE}::The test failed. Visit ${PACKAGE_URL}."

0 comments on commit bd08298

Please sign in to comment.