Rename bindGraphQLSchemaAPIToContext to initG and include functions that dont need to be bound to context #365
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/setup-deps | |
- name: Check Types | |
run: pnpm run all:types | |
linting: | |
name: Linting | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@main | |
- uses: ./.github/actions/setup-deps | |
- name: Linting | |
run: pnpm run lint | |
tests: | |
name: Tests | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@main | |
- uses: ./.github/actions/setup-deps | |
- name: Tests | |
run: pnpm run test |