File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree 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 @@ -18,6 +18,7 @@ RUN apk -U upgrade \
1818 curl=8.14.1-r1 \
1919 git=2.49.1-r0 \
2020 jq=1.8.0-r0 \
21+ npm=11.3.0-r1 \
2122 pipx=1.7.1-r0 \
2223 py3-pip=25.1.1-r0 \
2324 python3=3.12.11-r0 \
@@ -31,6 +32,9 @@ RUN pipx ensurepath --global \
3132 yamlpath==3.8.2 \
3233 yq==3.4.3
3334
35+ RUN npm install -g \
36+ prettier@3.6.2
37+
3438RUN adduser \
3539 --home "${USER_HOME}" \
3640 --uid "${USER_ID}" \
Original file line number Diff line number Diff line change @@ -18,6 +18,7 @@ services:
1818 json2yaml --version # json2yaml
1919 pip --version # py3-pip
2020 pipx --version # pipx
21+ prettier --version # prettier
2122 python --version # python3
2223 yaml-paths --version # yamlpath
2324 yamllint --version # yamllint
You can’t perform that action at this time.
0 commit comments