File tree Expand file tree Collapse file tree 3 files changed +25
-0
lines changed
Expand file tree Collapse file tree 3 files changed +25
-0
lines changed Original file line number Diff line number Diff line change 1+ ---
2+ name : Pipx Check Versions
3+
4+ on :
5+ schedule :
6+ - cron : " 0 0 * * 0"
7+ workflow_dispatch :
8+
9+ permissions : {}
10+
11+ jobs :
12+ check :
13+ runs-on : ubuntu-latest
14+ steps :
15+ - name : Check the versions
16+ shell : bash
17+ run : |
18+ set -euo pipefail
19+ IFS=$'\n\t'
20+ docker run --pull always -t --user root "leplusorg/${GITHUB_REPOSITORY#*/docker-}:main" npm outdated --global
Original file line number Diff line number Diff line change @@ -20,6 +20,7 @@ RUN apk -U upgrade \
2020 libxml2-utils=2.13.8-r0 \
2121 libxslt=1.1.43-r3 \
2222 maven=3.9.9-r0 \
23+ npm=11.3.0-r1 \
2324 openjdk21-jre-headless=21.0.8_p9-r0 \
2425 pipx=1.7.1-r0 \
2526 py3-pip=25.1.1-r0 \
@@ -36,6 +37,9 @@ RUN pipx ensurepath --global \
3637 tcx2gpx==0.1.5 \
3738 yq==3.4.3
3839
40+ RUN npm install -g \
41+ v8r@5.1.0
42+
3943RUN mkdir -p /opt/saxon
4044
4145COPY pom.xml mvnw run.sh /opt/saxon/
Original file line number Diff line number Diff line change @@ -21,6 +21,7 @@ services:
2121 xmllint --version # libxml2-utils
2222 xsltproc --version # libxslt
2323 mvn --version # maven
24+ prettier --version # prettier
2425 java --version # openjdk21-jre-headless
2526 xmlindent -v # xmlindent
2627 xmlsec1 --version # xmlsec
You can’t perform that action at this time.
0 commit comments