More Simulation Support Pt.2 #1145
Workflow file for this run
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
name: Fission - ES Lint Format Validation | |
on: | |
workflow_dispatch: {} | |
push: | |
branches: [ prod, dev ] | |
pull_request: | |
branches: [ prod, dev ] | |
jobs: | |
runFormatValidationScript: | |
name: 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 | |
if: ${{ always() }} | |
run: | | |
cd fission | |
npm run lint && echo "ESLint Validation Passed" || (echo "ESLint Validation Failed" && exit 1) | |
- name: Prettier | |
id: prettier-validation | |
if: ${{ always() }} | |
run: | | |
cd fission | |
npx prettier --version | |
npm run prettier && echo "Prettier Validation Passed" || (echo "Prettier Validation Failed" && exit 1) |