Bump @eslint/compat from 1.3.2 to 2.1.0 #292
Workflow file for this run
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: | |
| workflow_dispatch: {} | |
| push: | |
| branches: | |
| - main | |
| pull_request: | |
| branches: | |
| - main | |
| jobs: | |
| linting: | |
| name: Linting | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout | |
| uses: actions/checkout@v6 | |
| - name: Setup linting | |
| uses: ./.github/actions/setup | |
| - name: Lint - TypeScript | |
| run: pnpm --filter @commercetools/agent-essentials run lint | |
| - name: Lint - Model Context Protocol | |
| run: pnpm --filter @commercetools/mcp-essentials run lint | |
| formatting: | |
| name: Formatting | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout | |
| uses: actions/checkout@v6 | |
| - name: Setup formatting | |
| uses: ./.github/actions/setup | |
| - name: Prettier - TypeScript | |
| run: pnpm --filter @commercetools/agent-essentials run prettier-check | |
| - name: Prettier - Model Context Protocol | |
| run: pnpm --filter @commercetools/mcp-essentials run prettier-check | |
| testing: | |
| name: Testing | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout | |
| uses: actions/checkout@v6 | |
| - name: Setup testing | |
| uses: ./.github/actions/setup | |
| - name: Test - TypeScript | |
| run: pnpm --filter @commercetools/agent-essentials run test | |
| - name: Test - Model Context Protocol | |
| run: | | |
| # Builds types which are neededin tests | |
| pnpm --filter @commercetools/agent-essentials run build | |
| pnpm --filter @commercetools/mcp-essentials run test | |
| building: | |
| name: Building | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout | |
| uses: actions/checkout@v6 | |
| - name: Setup testing | |
| uses: ./.github/actions/setup | |
| - name: Test - TypeScript | |
| run: | | |
| pnpm --filter @commercetools/agent-essentials run build | |
| pnpm --filter @commercetools/agent-essentials run clean | |
| - name: Test - Model Context Protocol | |
| run: | | |
| pnpm --filter @commercetools/mcp-essentials run build | |
| pnpm --filter @commercetools/mcp-essentials run clean |