-
Notifications
You must be signed in to change notification settings - Fork 51
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Mirabuf Parser and Initial React UI (#966)
- Loading branch information
Showing
109 changed files
with
9,931 additions
and
634 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,44 @@ | ||
name: Format Validation (ESLint) | ||
|
||
on: | ||
workflow_dispatch: {} | ||
push: | ||
branches: [ master, dev ] | ||
pull_request: | ||
branches: [ master, dev ] | ||
|
||
jobs: | ||
runFormatValidationScript: | ||
name: Run ESLint Format Validation | ||
runs-on: ubuntu-latest | ||
steps: | ||
- name: Checkout Code | ||
uses: actions/checkout@v2 | ||
- name: JavaScript Setup | ||
uses: actions/setup-node@v2 | ||
with: | ||
node-version: 20 | ||
- name: Install Dependencies | ||
run: | | ||
cd fission | ||
npm install | ||
- 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.linter-validation.outcome }} == "success" ]; then | ||
echo "Format Validation Passed" | ||
else | ||
echo "Format Validation Failed" | ||
exit 1 | ||
fi |
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Binary file not shown.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.