feat(owner): каскадний доступ до LLM через крейт llm-cascade #67
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 JS | |
| on: | |
| push: | |
| branches: | |
| - dev | |
| - main | |
| paths: | |
| - '**/*.js' | |
| - '**/*.mjs' | |
| - '**/*.cjs' | |
| - '**/*.jsx' | |
| - '**/*.ts' | |
| - '**/*.tsx' | |
| - '**/*.vue' | |
| - '**/eslint.config.*' | |
| pull_request: | |
| branches: | |
| - dev | |
| - main | |
| concurrency: | |
| group: ${{ github.ref }}-${{ github.workflow }} | |
| cancel-in-progress: true | |
| jobs: | |
| eslint: | |
| runs-on: ubuntu-latest | |
| permissions: | |
| contents: read | |
| steps: | |
| - uses: actions/checkout@v6 | |
| with: | |
| persist-credentials: false | |
| - uses: ./.github/actions/setup-bun-deps | |
| - name: Eslint | |
| run: | | |
| bunx oxlint | |
| bunx eslint . | |
| bunx jscpd . | |
| bunx knip --no-config-hints |