Merge pull request #136 from ai-forever/open-swe/readme-docs-actualiz… #243
This file contains hidden or 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: | |
| push: | |
| branches: [main, dev] | |
| pull_request: | |
| paths: | |
| - 'front/src/**' | |
| merge_group: | |
| jobs: | |
| lint-frontend: | |
| name: Lint Frontend | |
| runs-on: ubuntu-latest | |
| defaults: | |
| run: | |
| working-directory: front | |
| steps: | |
| - name: Checkout Code | |
| uses: actions/checkout@v4 | |
| - name: Setup Node.js | |
| uses: actions/setup-node@v4 | |
| with: | |
| node-version: '22' | |
| - name: Install dependencies | |
| run: npm ci | |
| - name: Check Format | |
| run: npm run format:check | |