From 403a157116ab58b14f4880b55f5d34415fa694cf Mon Sep 17 00:00:00 2001 From: KyroVibe Date: Sat, 16 Mar 2024 13:12:01 -0600 Subject: [PATCH] No longer fails on prettier --- .github/workflows/ESLintFormat.yml | 11 ++++++++--- 1 file changed, 8 insertions(+), 3 deletions(-) diff --git a/.github/workflows/ESLintFormat.yml b/.github/workflows/ESLintFormat.yml index a214bc20b9..5cae0c1e66 100644 --- a/.github/workflows/ESLintFormat.yml +++ b/.github/workflows/ESLintFormat.yml @@ -22,16 +22,21 @@ jobs: run: | cd fission npm install - - name: Format Validation - id: format-validation + - name: Linter + id: linter-validation run: | cd fission npm run lint + continue-on-error: true + - name: Prettier + id: prettier-validation + run: | + cd fission npm run prettier continue-on-error: true - name: Check Success run: | - if [ ${{ steps.format-validation.outcome }} == "success" ]; then + if [ ${{ steps.linter-validation.outcome }} == "success" ]; then echo "Format Validation Passed" else echo "Format Validation Failed"