We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent ef2db75 commit 9acf5e7Copy full SHA for 9acf5e7
.github/workflows/deploy-docs.yml
@@ -7,8 +7,20 @@ on:
7
8
jobs:
9
deploy:
10
- runs-on: ubuntu-latest
+ strategy:
11
+ matrix:
12
+ include:
13
+ - runner: [self-hosted, macOS, ARM64]
14
+ fallback: ubuntu-latest
15
+ fail-fast: false
16
+ runs-on: ${{ matrix.runner }}
17
+ continue-on-error: ${{ matrix.fallback != '' }}
18
+ defaults:
19
+ run:
20
+ working-directory: documentation
21
env:
22
+ # Bump Node heap to 6 GB — the typedoc-generated type-reference
23
+ # content pushes Docusaurus's webpack bundle past the default 2 GB.
24
NODE_OPTIONS: --max-old-space-size=6144
25
steps:
26
- uses: actions/checkout@v4
0 commit comments