Skip to content

Commit

Permalink
feat(ci): upgrade to prettier v3
Browse files Browse the repository at this point in the history
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.
  • Loading branch information
lubber-de authored Dec 20, 2024
1 parent 83986c3 commit 7446b46
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,8 +16,8 @@ jobs:
run: npm run lint
- name: Assert LESS files formatting using Prettier
run: >
yarn add -D github:prettier/prettier#c6e026ea28
&& npx prettier --loglevel warn '!dist' '!test/coverage' '!src/semantic.less' '**/*.{css,less,overrides,variables}' --write
yarn add -D prettier@^3
&& npx prettier --log-level warn '!dist' '!test/coverage' '!src/semantic.less' '**/*.{css,less,overrides,variables}' --write
&& git restore package.json yarn.lock
&& git add . -N && git diff --color --exit-code
test:
Expand Down

0 comments on commit 7446b46

Please sign in to comment.