(feat): ir
now adds a TypeReference
for container types that makes it easier to generate snippets + autogenerated type examples
#2046
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: 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 | |
- uses: actions/setup-node@v3 | |
with: | |
node-version: 18 | |
cache: "yarn" | |
- name: Install Deps | |
run: yarn install | |
- name: Fern check | |
env: | |
FORCE_COLOR: "2" | |
run: | | |
yarn workspace @fern-api/cli dist:cli:dev | |
cd test-definitions | |
FERN_NO_VERSION_REDIRECTION=true node $(yarn workspace @fern-api/cli bin fern:dev) check | |
cd ../test-definitions-openapi | |
FERN_NO_VERSION_REDIRECTION=true node $(yarn workspace @fern-api/cli bin fern:dev) check |