Skip to content

Commit 518bc0a

Browse files
committed
build(prettier): adding prettier 3.6.2
1 parent 7c67232 commit 518bc0a

3 files changed

Lines changed: 25 additions & 0 deletions

File tree

Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
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

yaml/Dockerfile

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff 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+
3438
RUN adduser \
3539
--home "${USER_HOME}" \
3640
--uid "${USER_ID}" \

yaml/docker-compose.test.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff 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

0 commit comments

Comments
 (0)