File tree Expand file tree Collapse file tree 1 file changed +10
-0
lines changed
.github/actions/build-environment Expand file tree Collapse file tree 1 file changed +10
-0
lines changed Original file line number Diff line number Diff line change @@ -81,13 +81,23 @@ RUN apt-get update \
81
81
&& apt-get clean \
82
82
&& rm -rf /var/lib/apt/lists/*
83
83
84
+ # Install web development tools
85
+ RUN apt-get update \
86
+ && curl -sL https://deb.nodesource.com/setup_12.x | bash - \
87
+ && apt-get install -y --no-install-recommends nodejs \
88
+ && npm install -g yarn@1 \
89
+ # Clean up
90
+ && apt-get clean \
91
+ && rm -rf /var/lib/apt/lists/*
92
+
84
93
# Install documentation dependencies
85
94
RUN pip install \
86
95
mkdocs==1.* \
87
96
mkdocs-material==6.* \
88
97
pymdown-extensions==8.* \
89
98
pygments==2.* \
90
99
markdown-include==0.6.* \
100
+ mkdocs-awesome-pages-plugin==2.* \
91
101
mkdocs-markdownextradata-plugin==0.1.* \
92
102
&& npm install -g markdownlint@^0.21.1 markdownlint-cli@^0.24.0
93
103
You can’t perform that action at this time.
0 commit comments