Merge pull request #798 from systemli/fix/signal_group_loading #1385
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: Quality | |
| on: | |
| push: | |
| branches: | |
| - main | |
| pull_request: | |
| jobs: | |
| prettier: | |
| name: Prettier | |
| runs-on: ubuntu-24.04 | |
| steps: | |
| - name: Checkout | |
| uses: actions/checkout@v6 | |
| - name: Set up Node | |
| uses: actions/setup-node@v6 | |
| with: | |
| node-version-file: .nvmrc | |
| cache: 'npm' | |
| - name: Install Dependencies | |
| run: npm ci | |
| - name: Run Prettier | |
| uses: wearerequired/lint-action@v2 | |
| with: | |
| check_name: Prettier Results | |
| prettier: true | |
| prettier_dir: src | |
| eslint: | |
| name: ESLint | |
| runs-on: ubuntu-24.04 | |
| steps: | |
| - name: Checkout | |
| uses: actions/checkout@v6 | |
| - name: Set up Node | |
| uses: actions/setup-node@v6 | |
| with: | |
| node-version-file: .nvmrc | |
| cache: 'npm' | |
| - name: Install Dependencies | |
| run: npm ci | |
| - name: Run ESLint | |
| uses: wearerequired/lint-action@v2 | |
| with: | |
| check_name: ESLint Results | |
| eslint: true | |
| eslint_extensions: ts,tsx,js,jsx | |
| eslint_dir: src |