Configure Keycloak worker thread pool to be aligned with JGroup thread pool size #238
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
name: Testing Documentation Site | |
on: | |
pull_request: | |
paths: | |
- '.github/workflows/docs-ci.yml' | |
- 'antora/**' | |
- 'doc/**' | |
concurrency: | |
# Only run once for latest commit per ref and cancel other (previous) runs. | |
group: ${{ github.workflow }}-${{ github.ref }} | |
cancel-in-progress: true | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Set up Node.js | |
uses: actions/setup-node@v3 | |
with: | |
node-version: '16.x' | |
cache: 'yarn' | |
cache-dependency-path: 'antora/yarn.lock' | |
- name: Build docs | |
working-directory: antora | |
run: ./author.sh | |
- name: Upload artifact | |
uses: actions/upload-pages-artifact@v2 | |
with: | |
path: antora/_site/keycloak-benchmark |