chore(deps): replace apollo graphql packages with @apollo/datasource-rest 4.0.0 #2535
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: Tests | |
on: | |
push: | |
branches: | |
- master | |
pull_request: {} | |
jobs: | |
lint: | |
name: Lint | |
uses: the-guild-org/shared-config/.github/workflows/lint.yml@main | |
with: | |
script: yarn ci:lint | |
secrets: | |
githubToken: ${{ secrets.GITHUB_TOKEN }} | |
build: | |
name: Type Check on GraphQL v${{matrix.graphql_version}} | |
runs-on: ubuntu-latest | |
strategy: | |
matrix: | |
graphql_version: | |
- 15 | |
- 16 | |
steps: | |
- name: Checkout Master | |
uses: actions/checkout@v3 | |
- name: Setup env | |
uses: the-guild-org/shared-config/setup@main | |
with: | |
nodeVersion: 18 | |
- name: Use GraphQL v${{matrix.graphql_version}} | |
run: node ./scripts/match-graphql.js ${{matrix.graphql_version}} | |
- name: Type Check | |
run: yarn ts:check | |
test: | |
name: Unit Test on Node ${{matrix.node-version}} (${{matrix.os}}) and GraphQL v${{matrix.graphql_version}} | |
runs-on: ${{matrix.os}} | |
strategy: | |
matrix: | |
os: [ubuntu-latest] # remove windows to speed up the tests | |
node-version: [12, 16, 18] | |
graphql_version: | |
- 15 | |
- 16 | |
steps: | |
- name: Checkout Master | |
uses: actions/checkout@v3 | |
- name: Setup env | |
uses: the-guild-org/shared-config/setup@main | |
with: | |
nodeVersion: 18 | |
- name: Use GraphQL v${{matrix.graphql_version}} | |
run: node ./scripts/match-graphql.js ${{matrix.graphql_version}} | |
- name: Cache Jest | |
uses: actions/cache@v3 | |
with: | |
path: .cache/jest | |
key: ${{ runner.os }}-${{matrix.node-version}}-${{matrix.graphql_version}}-jest-${{ hashFiles('yarn.lock') }} | |
restore-keys: | | |
${{ runner.os }}-${{matrix.node-version}}-${{matrix.graphql_version}}-jest- | |
- name: Test | |
run: yarn test --ci | |
env: | |
CI: true | |
test_esm: | |
name: ESM Test | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout Master | |
uses: actions/checkout@v3 | |
- name: Setup env | |
uses: the-guild-org/shared-config/setup@main | |
with: | |
nodeVersion: 18 | |
- name: Build Packages | |
run: yarn build | |
- name: Test ESM | |
run: node scripts/test-esm.mjs |