feat(sdk): [NET-1663] Signature validation in worker thread (draft) #4404
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: Test Building Documentation | |
| on: | |
| pull_request: | |
| branches: [main, brubeck] | |
| jobs: | |
| deploy: | |
| name: Test building documentation | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v5 | |
| - name: Use Node.js | |
| uses: actions/setup-node@v4 | |
| with: | |
| node-version-file: '.nvmrc' | |
| cache: npm | |
| cache-dependency-path: 'package-lock.json' | |
| - name: Install dependencies | |
| run: npm run bootstrap | |
| - name: Build documentation | |
| working-directory: ./docs | |
| run: npm ci && npm run build | |
| - name: API docs smoke test | |
| working-directory: ./docs | |
| run: ./api-docs-smoke-test.sh |