Incoming data partially not normalized when matching a fuzzy possibleType and selected on a fragment when nullable field is null #994
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: Api Extractor | |
on: pull_request | |
concurrency: ${{ github.workflow }}-${{ github.ref }} | |
jobs: | |
api-extractor: | |
name: Api-Extractor | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout repo | |
uses: actions/checkout@v4 | |
- name: Setup Node.js 18.x | |
uses: actions/setup-node@v4 | |
with: | |
node-version: 18.x | |
- name: Install dependencies (with cache) | |
uses: bahmutov/npm-install@v1 | |
- name: Run build | |
run: npm run build | |
- name: Run Api-Extractor | |
run: npm run extract-api |