feat: HTTP Data API — optional column selectors (*/**) and no streami… #1869
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: Code Quality root | |
| on: | |
| pull_request: | |
| paths-ignore: | |
| - 'apps/**' | |
| - 'packages/**' | |
| push: | |
| branches: [main] | |
| concurrency: | |
| group: ${{ github.workflow }}-${{ github.ref }} | |
| cancel-in-progress: true | |
| jobs: | |
| quality-checks: | |
| name: ${{ matrix.check.name }} | |
| runs-on: ubuntu-latest | |
| timeout-minutes: ${{ matrix.check.timeout }} | |
| strategy: | |
| # If one check fails, the others will continue to run | |
| fail-fast: false | |
| matrix: | |
| check: | |
| - name: 'ESLint' | |
| command: 'npm run lint:root' | |
| timeout: 5 | |
| - name: 'Prettier' | |
| command: 'npm run format:root:check' | |
| timeout: 5 | |
| - name: 'Markdownlint' | |
| command: 'npm run lint:md:root' | |
| timeout: 5 | |
| steps: | |
| - name: Checkout repository | |
| uses: actions/checkout@v4 | |
| - name: Setup Node.js | |
| uses: actions/setup-node@v4 | |
| with: | |
| node-version: '22' | |
| cache: 'npm' | |
| - name: Install dependencies | |
| run: npm ci --prefer-offline --no-audit --ignore-scripts --no-fund --loglevel error | |
| - name: Run ${{ matrix.check.name }} | |
| run: ${{ matrix.check.command }} |