Skip to content

Commit 11e21bf

Browse files
committed
use NodeJS
1 parent 340205f commit 11e21bf

File tree

2 files changed

+7
-2
lines changed

2 files changed

+7
-2
lines changed

.github/workflows/ci.yml

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -90,10 +90,16 @@ jobs:
9090
run: julia --project=@. --color=yes -p ${{ env.LITERATE_PROC }} .github/ci.jl
9191
- name: Copy back built notebooks
9292
run: cp --verbose -rf ${{ env.NBCACHE }}/docs/* docs/
93+
- name: Setup NodeJS
94+
uses: actions/setup-node@v6
95+
with:
96+
node-version: 'lts/*'
9397
- name: Build website
9498
env:
9599
BASE_URL: /${{ github.event.repository.name }}
96-
run: jupyter book build --html --strict
100+
run: |
101+
npm install -g "jupyter-book"
102+
jupyter-book build --html --strict
97103
- name: Upload pages artifact
98104
if: ${{ github.ref == 'refs/heads/main' }}
99105
uses: actions/upload-pages-artifact@v4

requirements.txt

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +0,0 @@
1-
jupyter-book==2.1.0

0 commit comments

Comments
 (0)