deps: update dependency lucide-react to v1.24.0 #4331
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| # SPDX-FileCopyrightText: 2023 HH Partners | |
| # | |
| # SPDX-License-Identifier: MIT | |
| name: Check formatting | |
| on: | |
| pull_request: | |
| branches: | |
| - main | |
| push: | |
| branches: | |
| - main | |
| workflow_dispatch: | |
| jobs: | |
| prettier: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout | |
| uses: actions/checkout@9c091bb21b7c1c1d1991bb908d89e4e9dddfe3e0 # v7.0.0 | |
| - name: Setup Node.js | |
| uses: actions/setup-node@820762786026740c76f36085b0efc47a31fe5020 # v7.0.0 | |
| with: | |
| node-version: 24.18.0 | |
| cache: "npm" | |
| - name: Enable Corepack | |
| run: npm install corepack@latest && corepack enable | |
| - name: Install dependencies | |
| run: |- | |
| npm ci | |
| - name: Run Prettier | |
| run: |- | |
| npm run prettier:check |