[Pool Simulator] Add validation in new form #749
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: ci | |
on: | |
push: | |
branches: | |
- main | |
pull_request: | |
jobs: | |
run-linters: | |
name: Run linters | |
runs-on: ubuntu-latest | |
strategy: | |
fail-fast: true | |
concurrency: | |
group: ${{ github.workflow }}-${{ github.ref }} | |
cancel-in-progress: true | |
steps: | |
- name: Checkout bleu's version of Balancer SOR | |
uses: actions/checkout@v3 | |
with: | |
repository: bleu-studio/balancer-sor | |
path: balancer-sor | |
- uses: actions/checkout@v3 | |
- uses: ./.github/workflows/setup-pnpm | |
- name: Check formatting and linting | |
run: pnpm ci |