feat(product_catalog): add enum to filter by product type in the public catalog API #5874
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: Run Tests | |
| on: | |
| push: | |
| branches: | |
| - main | |
| pull_request: | |
| merge_group: | |
| jobs: | |
| typecheck: | |
| runs-on: ubuntu-24.04 | |
| steps: | |
| - uses: actions/[email protected] | |
| - uses: pnpm/[email protected] | |
| - name: Use Node.js | |
| uses: actions/[email protected] | |
| with: | |
| node-version: 20 | |
| check-latest: true | |
| cache: 'pnpm' | |
| - run: pnpm install | |
| - run: pnpm typecheck | |
| lint: | |
| runs-on: ubuntu-24.04 | |
| steps: | |
| - uses: actions/[email protected] | |
| - uses: pnpm/[email protected] | |
| - name: Use Node.js | |
| uses: actions/[email protected] | |
| with: | |
| node-version: 20 | |
| check-latest: true | |
| cache: 'pnpm' | |
| - run: pnpm install | |
| - run: pnpm run build | |
| - run: pnpm run lint | |
| test: | |
| runs-on: ubuntu-24.04 | |
| strategy: | |
| matrix: | |
| test-environment: | |
| - node | |
| - jsdom | |
| node: | |
| - '18' | |
| - '20' | |
| steps: | |
| - uses: actions/[email protected] | |
| - uses: pnpm/[email protected] | |
| - name: Use Node.js | |
| uses: actions/[email protected] | |
| with: | |
| node-version: ${{ matrix.node }} | |
| check-latest: true | |
| cache: 'pnpm' | |
| - run: pnpm install | |
| - run: pnpm run build | |
| - run: pnpm run test:coverage --environment ${{ matrix.test-environment }} | |
| - uses: codecov/[email protected] |