Skip to content

Add example that omits lists and fields from GraphQL #503

Add example that omits lists and fields from GraphQL

Add example that omits lists and fields from GraphQL #503

Workflow file for this run

name: CI
on:
push:
branches:
- main
pull_request:
workflow_dispatch:
concurrency:
group: always-tests-${{ github.ref }}
cancel-in-progress: true
jobs:
linting:
name: Linting
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@main
- uses: ./.github/actions/ci-setup
- name: Prettier
run: pnpm lint:prettier
- name: TypeScript
run: pnpm lint:types
- name: ESLint
run: pnpm lint:eslint
- name: Preconstruct
run: pnpm build
- name: Prisma Filters
run: pnpm lint:filters
unit_tests:
name: Package Unit Tests
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@main
- uses: ./.github/actions/ci-setup
- name: Unit tests
run: pnpm jest --ci --runInBand --testPathIgnorePatterns=admin-ui-tests --testPathIgnorePatterns=api-tests --testPathIgnorePatterns=examples-smoke-tests --testPathIgnorePatterns=examples/testing