Inline graphql-codegen deps #230
Workflow file for this run
This file contains 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: CI | |
on: | |
push: | |
branches: | |
- main | |
pull_request: | |
jobs: | |
typescript: | |
name: TypeScript | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@main | |
- uses: ./.github/actions/ci-setup | |
- name: Check Types | |
run: pnpm run types | |
tests: | |
name: "Tests on ${{matrix.platform}}" | |
strategy: | |
fail-fast: true | |
matrix: | |
platform: | |
- ubuntu-latest | |
# - windows-latest | |
runs-on: ${{matrix.platform}} | |
steps: | |
- uses: actions/checkout@main | |
- uses: ./.github/actions/ci-setup | |
- name: Run Tests | |
run: pnpm run test | |
linting: | |
name: Linting | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@main | |
- uses: ./.github/actions/ci-setup | |
- name: ESLint | |
run: pnpm run lint | |
- name: Prettier | |
run: pnpm run format:check |