-
Notifications
You must be signed in to change notification settings - Fork 2
67 lines (55 loc) · 1.93 KB
/
extract-api.yaml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
# imodel-transformer Extract API Build
name: Extract API
on:
workflow_dispatch:
pull_request:
branches:
- main
paths-ignore:
- "**.md"
- docs/**
- .github/CODEOWNERS
- common/changes/**/*.json
- "**/CHANGELOG.json"
- "**/CHANGELOG.md"
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: "18"
- name: Enable and install pnpm with corepack
run: corepack enable && corepack prepare pnpm@latest --activate
- name: Pnpm install
run: pnpm install
- name: Pnpm build
run: pnpm run build
# - name: Install API Extractor
# run: pnpm add --save-dev @microsoft/api-extractor -w
# - name: Run API Extractor
# run: npx api-extractor run
- name: Run Extract API
run: pnpm run extract-api
working-directory: ${{ github.workspace }}/packages/transformer
- name: Assert no uncommitted changes (for extension api)
shell: bash
run: |
if [ $(git status --porcelain | wc -l) -ne "0" ]; then
echo "The following file(s) contain uncommitted changes:"
git status --porcelain -u
echo -e 'Please do the following:\n1. run `rush extract-api` in the monorepo \n2. commit the modified generated extension api files (found in the core/frontend and core/extension dirs) \n3. run rush change and commit the change files for core-frontend and core-extension'
exit 1
fi
- name: Publish extracted api
uses: actions/upload-artifact@v4
with:
name: extracted-api
path: common/api