Skip to content

Commit

Permalink
fix(library-lint-build-test): add continue-on-error for all lint actions
Browse files Browse the repository at this point in the history
  • Loading branch information
xiplias authored Feb 14, 2024
1 parent c93a00a commit d8fd167
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions .github/workflows/library-lint-build-test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -48,19 +48,22 @@ jobs:

- name: Merge lint reports
run: jq -s '[.[]]|flatten' eslint-reports/*.json &> eslint-reports/eslint_report.json
continue-on-error: true

- name: Annotate Code Linting Results
uses: ataylorme/eslint-annotate-action@1.2.0
with:
repo-token: ${{ secrets.GITHUB_TOKEN }}
report-json: "./eslint-reports/eslint_report.json"
continue-on-error: true

- name: Upload ESLint report
if: ${{ always() }}
uses: actions/upload-artifact@v3
with:
name: eslint-reports
path: eslint-reports
continue-on-error: true

- name: Test
run: pnpm test

0 comments on commit d8fd167

Please sign in to comment.