File tree Expand file tree Collapse file tree 1 file changed +24
-0
lines changed Expand file tree Collapse file tree 1 file changed +24
-0
lines changed Original file line number Diff line number Diff line change @@ -109,6 +109,30 @@ jobs:
109
109
yarn config set enableImmutableInstalls false
110
110
node ./scripts/retry -- yarn test:integration
111
111
112
+ extract-docs :
113
+ runs-on : ${{ matrix.os }}
114
+ name : Extract Docs
115
+ strategy :
116
+ matrix :
117
+ java : [17]
118
+ os : [ubuntu-latest]
119
+
120
+ steps :
121
+ - uses : actions/checkout@v4
122
+ - uses : gradle/wrapper-validation-action@v2
123
+ - uses : actions/setup-node@v4
124
+ with :
125
+ node-version : 18
126
+ cache : " yarn"
127
+ - name : Install dependencies
128
+ run : |
129
+ yarn
130
+ yarn turbo telemetry disable
131
+ - name : Build packages
132
+ run : node ./scripts/retry -- yarn build
133
+ - name : Run API Extractor
134
+ run : yarn extract:docs
135
+
112
136
ensure-typescript-formatted :
113
137
runs-on : ubuntu-latest
114
138
name : Ensure TypeScript is formatted
You can’t perform that action at this time.
0 commit comments