We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 80cbf4d commit dd6d592Copy full SHA for dd6d592
.github/workflows/static-analysis.yml
@@ -96,6 +96,22 @@ jobs:
96
run: |
97
npm install -g [email protected]
98
npx markdownlint-cli2
99
+ prettier-website:
100
+ runs-on: ubuntu-24.04
101
+ steps:
102
+ - name: Checkout Repository
103
+ uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # v5
104
+ - uses: actions/setup-node@49933ea5288caeca8642d1e84afbd3f7d6820020 # v4
105
+ with:
106
+ node-version: 22
107
+ cache: npm
108
+ cache-dependency-path: website/package-lock.json
109
+ - name: Install dependencies
110
+ run: npm ci
111
+ working-directory: website
112
+ - name: Run Prettier
113
+ run: npm run format:check
114
115
qodana-scan:
116
if: ${{ github.event_name == 'pull_request' }}
117
runs-on: ubuntu-24.04
0 commit comments