We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 187e0f6 commit b08011dCopy full SHA for b08011d
2 files changed
.github/workflows/deploy-pages.yml
@@ -3,10 +3,6 @@ name: Deploy website to GitHub Pages
3
on:
4
push:
5
branches: [main]
6
- paths:
7
- - 'website/**'
8
- - 'src/**'
9
- - '.github/workflows/deploy-pages.yml'
10
workflow_dispatch:
11
12
permissions:
@@ -35,7 +31,9 @@ jobs:
35
31
env:
36
32
# Matches https://<owner>.github.io/<repo>/
37
33
VITE_BASE: /${{ github.event.repository.name }}/
38
- run: npm ci && npm run build
34
+ # Vite + Mermaid/Shiki can exceed default Node heap on ubuntu-latest
+ NODE_OPTIONS: --max-old-space-size=6144
+ run: node -v && npm -v && npm ci && npm run build
39
40
- uses: actions/upload-pages-artifact@v3
41
with:
website/public/.nojekyll
0 commit comments