Skip to content

Commit

Permalink
No longer fails on prettier
Browse files Browse the repository at this point in the history
HunterBarclay committed Mar 16, 2024
1 parent 7d2933f commit 403a157
Showing 1 changed file with 8 additions and 3 deletions.
11 changes: 8 additions & 3 deletions .github/workflows/ESLintFormat.yml
Original file line number Diff line number Diff line change
@@ -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"

0 comments on commit 403a157

Please sign in to comment.