File tree Expand file tree Collapse file tree 3 files changed +407
-2
lines changed
src/Elastic.Documentation.Site Expand file tree Collapse file tree 3 files changed +407
-2
lines changed Original file line number Diff line number Diff line change 3737
3838 build-api-lambda :
3939 uses : ./.github/workflows/build-api-lambda.yml
40+
4041
42+ synthetics :
43+ runs-on : ubuntu-latest
44+ steps :
45+ - uses : actions/checkout@v5
46+
47+ - name : Bootstrap Action Workspace
48+ id : bootstrap
49+ uses : ./.github/actions/bootstrap
50+
51+ - name : Install dependencies
52+ working-directory : src/Elastic.Documentation.Site
53+ run : npm ci
54+
55+ - name : Run assembler
56+ run : |
57+ dotnet run --project src/tooling/docs-builder -- assembler config init --local
58+ dotnet run --project src/tooling/docs-builder -- assembler clone -c local --skip-private-repositories
59+ dotnet run --project src/tooling/docs-builder -- assembler build -c local --skip-private-repositories &
60+
61+ - name : Wait for docs
62+ working-directory : src/Elastic.Documentation.Site
63+ run : npx wait-on http://localhost:4000/docs
64+
65+ - name : Run synthetics
66+ working-directory : src/Elastic.Documentation.Site
67+ run : npm run synthetics:test
68+
4169 npm :
4270 runs-on : ubuntu-latest
4371 defaults :
You can’t perform that action at this time.
0 commit comments