We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 05beb5d commit d1d04c0Copy full SHA for d1d04c0
.github/workflows/ci.yml
@@ -109,6 +109,24 @@ jobs:
109
yarn config set enableImmutableInstalls false
110
node ./scripts/retry -- yarn test:integration
111
112
+ extract-docs:
113
+ runs-on: smithy-typescript_ubuntu-latest_8-core
114
+ name: Extract Docs
115
+ steps:
116
+ - uses: actions/checkout@v4
117
+ - uses: actions/setup-node@v4
118
+ with:
119
+ node-version: 18
120
+ cache: "yarn"
121
+ - name: Install dependencies
122
+ run: |
123
+ yarn
124
+ yarn turbo telemetry disable
125
+ - name: Build packages
126
+ run: node ./scripts/retry -- yarn build
127
+ - name: Run API Extractor
128
+ run: yarn extract:docs
129
+
130
ensure-typescript-formatted:
131
runs-on: ubuntu-latest
132
name: Ensure TypeScript is formatted
0 commit comments