FS-124 Add generalist agent and update supervisor to call this as a fall back #325
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: Lint Frontend | |
on: | |
pull_request: | |
push: | |
branches: | |
- main | |
jobs: | |
linting: | |
name: Linting | |
defaults: | |
run: | |
working-directory: ./frontend | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v2 | |
- name: Setup Node.js | |
uses: actions/setup-node@v2 | |
with: | |
node-version: 21 | |
- name: Install dependencies | |
run: npm install | |
- name: Lint | |
run: | | |
npm run lint | |
npx prettier . --check |