Skip to content

chore(deps): update dependency mkdocs-material to v9.6.22 (#738) #1544

chore(deps): update dependency mkdocs-material to v9.6.22 (#738)

chore(deps): update dependency mkdocs-material to v9.6.22 (#738) #1544

Workflow file for this run

# This workflow uses npm to install the dependencies, and then lint the files with Prettier.
# This workflow is adapted from the one that the Prettier project uses.
# It is licensed under the MIT license.
# For more information see: https://help.github.com/actions/language-and-framework-guides/using-nodejs-with-github-actions
name: Prettier
on:
push:
branches: [main]
pull_request:
branches: [main]
# Do not install Husky in GitHub Actions environment.
env:
HUSKY: 0
permissions:
contents: read
jobs:
lint:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [24.x]
steps:
- name: Checkout repository
uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # v5.0.0
- name: Setup Node.js ${{ matrix.node-version }}
uses: actions/setup-node@2028fbc5c25fe9cf00d9f06a71cc4710d4507903 # v6.0.0
with:
node-version: ${{ matrix.node-version }}
cache: "npm"
- name: Install dependencies with npm
run: npm ci
- name: Lint files with Prettier
run: npm run prettier