feat(cli): Add inline
property to type references from properties in Fern definition with OpenAPI importer
#4475
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: test-definitions | |
on: | |
push: | |
paths: | |
- "packages/**" | |
- "test-definitions/**" | |
- "test-definitions-openapi/**" | |
branches: | |
- main | |
pull_request: | |
paths: | |
- "packages/**" | |
- "test-definitions/**" | |
- "test-definitions-openapi/**" | |
branches: | |
- main | |
# Cancel previous workflows on previous push | |
concurrency: | |
group: ${{ github.workflow }}-${{ github.event.pull_request.number || github.ref }} | |
cancel-in-progress: true | |
jobs: | |
check: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout repo | |
uses: actions/checkout@v4 | |
- name: Install | |
uses: ./.github/actions/install | |
- uses: bufbuild/buf-setup-action@v1.34.0 | |
with: | |
github_token: ${{ github.token }} | |
- uses: actions/setup-go@v5 | |
with: | |
go-version: "stable" | |
- name: Install protoc-gen-openapi | |
run: go install github.com/google/gnostic/cmd/protoc-gen-openapi@v0.7.0 | |
- name: Fern check | |
env: | |
FORCE_COLOR: "2" | |
run: | | |
pnpm --filter @fern-api/cli dist:cli:dev | |
cli_path="$(pwd)/packages/cli/cli/dist/dev/cli.cjs" | |
cd test-definitions | |
FERN_NO_VERSION_REDIRECTION=true node $cli_path check | |
cd ../test-definitions-openapi | |
FERN_NO_VERSION_REDIRECTION=true node $cli_path check |