We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 115a5eb commit 80bbcd6Copy full SHA for 80bbcd6
.github/workflows/jekyll.yml
@@ -39,6 +39,18 @@ jobs:
39
ruby-version: '3.1' # Not needed with a .ruby-version file
40
bundler-cache: true # runs 'bundle install' and caches installed gems automatically
41
cache-version: 0 # Increment this number if you need to re-download cached gems
42
+ - name: Install Node.js for Mermaid CLI
43
+ uses: actions/setup-node@v3
44
+ with:
45
+ node-version: "14"
46
+ - name: Install Mermaid CLI
47
+ run: npm install -g @mermaid-js/mermaid-cli
48
+ - name: Install Python for Jupyter
49
+ uses: actions/setup-python@v4
50
51
+ python-version: "3.9"
52
+ - name: Install Jupyter
53
+ run: pip install jupyter
54
- name: Setup Pages
55
id: pages
56
uses: actions/configure-pages@v5
0 commit comments