Migrate TypeSpec schemas from old docs repo to new Fern config #47
This file contains hidden or 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: preview-docs | |
| on: pull_request | |
| jobs: | |
| run: | |
| runs-on: ubuntu-latest | |
| permissions: | |
| contents: read | |
| pull-requests: write | |
| steps: | |
| - name: Checkout repository | |
| uses: actions/checkout@v4 | |
| - name: Setup Node.js | |
| uses: actions/setup-node@v4 | |
| with: | |
| node-version: '22' | |
| - name: Install TypeSpec dependencies | |
| working-directory: specs | |
| run: npm install --ignore-engines | |
| - name: Generate OpenAPI specs from TypeSpec | |
| working-directory: specs | |
| run: npm run build:api | |
| - name: Install Fern CLI tool | |
| run: npm install -g fern-api | |
| - name: Generate preview URL | |
| id: generate-docs | |
| env: | |
| FERN_TOKEN: ${{ secrets.FERN_TOKEN }} | |
| run: | | |
| OUTPUT=$(fern generate --docs --instance signalwire.docs.buildwithfern.com --preview 2>&1) || true | |
| echo "$OUTPUT" | |
| URL=$(echo "$OUTPUT" | grep -oP 'Published docs to \K.*(?= \()') | |
| echo "Preview URL: $URL" | |
| echo "🌿 Preview your docs: $URL" > preview_url.txt | |
| - name: Comment URL in PR | |
| uses: thollander/actions-comment-pull-request@v2.4.3 | |
| with: | |
| filePath: preview_url.txt |