Skip to content

Commit f3c988b

Browse files
committed
Install Node.js and mystmd for GHA
1 parent d8c8429 commit f3c988b

File tree

2 files changed

+17
-1
lines changed

2 files changed

+17
-1
lines changed

.github/workflows/ci_publish.yml

Lines changed: 9 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,6 +27,14 @@ jobs:
2727
steps:
2828
- uses: actions/checkout@v5
2929

30+
- name: Setup Node.js
31+
uses: actions/setup-node@v4
32+
with:
33+
node-version: '22'
34+
35+
- name: Install mystmd
36+
run: npm install mystmd
37+
3038
- name: Setup Python
3139
uses: actions/setup-python@v6
3240
with:
@@ -62,4 +70,4 @@ jobs:
6270
git rm --cached -r .
6371
git add --pathspec-from-file=deployed_notebooks_manifest.in --force
6472
git commit -m "Deploy notebooks for commit ${gith}"
65-
git push origin deployed_notebooks --force
73+
git push origin deployed_notebooks --force

.github/workflows/ci_tests_run_notebooks.yml

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -65,6 +65,14 @@ jobs:
6565
steps:
6666
- uses: actions/checkout@v5
6767

68+
- name: Setup Node.js
69+
uses: actions/setup-node@v4
70+
with:
71+
node-version: '22'
72+
73+
- name: Install mystmd
74+
run: npm install mystmd
75+
6876
- name: Setup Python
6977
uses: actions/setup-python@v6
7078
with:

0 commit comments

Comments
 (0)