Skip to content

Commit 641d7e6

Browse files
committed
explicitly installing nodejs
1 parent 1d43224 commit 641d7e6

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

.github/workflows/main.yml

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,9 @@ jobs:
3131
- name: Prepare for build
3232
run: |
3333
apt-get update
34-
apt-get install -y zip
34+
apt-get install -y zip curl
35+
curl -fsSL https://deb.nodesource.com/setup_20.x | -E bash -
36+
apt-get install -y nodejs
3537
mkdir -p artifacts
3638
- name: Build docs # and include sitemap.xml TODO: uncomment when sitemap.xml is available
3739
run: |

0 commit comments

Comments
 (0)