Skip to content

Commit e7d2c81

Browse files
committed
Add jupyterlite build_wasm to ci/cd workflows
1 parent 98b65bf commit e7d2c81

File tree

2 files changed

+16
-1
lines changed

2 files changed

+16
-1
lines changed

.github/workflows/cd.yml

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,9 +29,12 @@ jobs:
2929
- name: Setup pixi
3030
uses: prefix-dev/setup-pixi@19eac09b398e3d0c747adc7921926a6d802df4da # v0.8.8
3131

32-
- name: Build executed notebooks and HTML
32+
- name: Build HTML
3333
run: pixi run build
3434

35+
- name: Build jupyterlite
36+
run: pixi run build_wasm
37+
3538
- name: Upload executed notebooks as GitHub artifact (for debugging)
3639
uses: actions/upload-artifact@v4
3740
with:

.github/workflows/ci.yml

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -100,3 +100,15 @@ jobs:
100100

101101
- name: Build static site
102102
run: pixi run build
103+
104+
pixi_build_wasm:
105+
name: Build jupyterlite site with pixi
106+
runs-on: ubuntu-latest
107+
steps:
108+
- uses: actions/checkout@v4
109+
110+
- name: Setup pixi
111+
uses: prefix-dev/setup-pixi@v0.8.1
112+
113+
- name: Build jupyterlite site
114+
run: pixi run build_wasm

0 commit comments

Comments
 (0)