feat(cli): Add inline
property to type references from properties in Fern definition with OpenAPI importer
#647
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: IR Check | |
on: | |
workflow_dispatch: | |
pull_request: | |
paths: | |
- "packages/ir-sdk/fern/apis/**" | |
branches: | |
- main | |
push: | |
paths: | |
- "packages/ir-sdk/fern/apis/**" | |
branches: | |
- main | |
jobs: | |
check: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout repository | |
uses: actions/checkout@v4 | |
- name: Install | |
uses: ./.github/actions/install | |
- name: Install Fern | |
run: npm install -g fern-api | |
- name: Check IR Definitions | |
run: | | |
cd packages/ir-sdk | |
fern check | |
- name: Check IR Definitions | |
env: | |
FERN_TOKEN: dummy | |
run: | | |
cd packages/ir-sdk | |
pnpm generate | |
- name: Ensure no changes to git-tracked files | |
run: git --no-pager diff --exit-code |