Skip to content

Commit 7446b46

Browse files
authored
feat(ci): upgrade to prettier v3
Switch Lint CI check for prettier to latest official stable version v3. Everything fixed via #2669 seems to be included in prettier@3 since quite a while now, so no need to stay at a fixed commit anymore.
1 parent 83986c3 commit 7446b46

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

.github/workflows/ci.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,8 +16,8 @@ jobs:
1616
run: npm run lint
1717
- name: Assert LESS files formatting using Prettier
1818
run: >
19-
yarn add -D github:prettier/prettier#c6e026ea28
20-
&& npx prettier --loglevel warn '!dist' '!test/coverage' '!src/semantic.less' '**/*.{css,less,overrides,variables}' --write
19+
yarn add -D prettier@^3
20+
&& npx prettier --log-level warn '!dist' '!test/coverage' '!src/semantic.less' '**/*.{css,less,overrides,variables}' --write
2121
&& git restore package.json yarn.lock
2222
&& git add . -N && git diff --color --exit-code
2323
test:

0 commit comments

Comments
 (0)