Resize Popout to fit content on popout #1331
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
# iTwin.js Extract API Build | |
name: Extract API | |
on: | |
workflow_dispatch: | |
pull_request: | |
branches: | |
- master | |
- release/* | |
paths-ignore: | |
- "**.md" | |
- docs/** | |
- .github/CODEOWNERS | |
jobs: | |
extract-api: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout branch | |
uses: actions/checkout@v2 | |
- name: Configure git | |
run: | | |
git config --local user.email [email protected] | |
git config --local user.name imodeljs-admin | |
- name: Setup node | |
uses: actions/setup-node@v2 | |
with: | |
node-version: "14" | |
- name: Rush install | |
run: node common/scripts/install-run-rush.js install | |
- name: Rush build | |
run: node common/scripts/install-run-rush.js build -v -p max --to-version-policy prerelease-monorepo-lockStep | |
- name: Rush extract-api | |
run: node common/scripts/install-run-rush.js extract-api | |
- name: Publish extracted api | |
uses: actions/upload-artifact@v2 | |
with: | |
name: extracted-api | |
path: common/api |