fix: LLM Docs #31
Workflow file for this run
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
| name: 🔍 Code quality | |
| on: | |
| pull_request: | |
| permissions: | |
| contents: read | |
| jobs: | |
| quality: | |
| runs-on: ubuntu-latest | |
| timeout-minutes: 5 | |
| steps: | |
| - name: Checkout repository ⬇️ | |
| uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 | |
| - name: Use Node.js 24.x ⚙️ | |
| uses: actions/setup-node@53b83947a5a98c8d113130e565377fae1a50d02f # v6.3.0 | |
| with: | |
| node-version: 24.x | |
| cache: "npm" | |
| - name: Setup Aikido Safe Chain | |
| run: | | |
| npm i -g @aikidosec/safe-chain | |
| safe-chain setup-ci | |
| - name: Install dependencies 📦 | |
| run: npm ci --safe-chain-skip-minimum-package-age | |
| - name: Check code quality 🔍 | |
| run: node --run lint | |
| - name: Check code formatting 🎨 | |
| run: node --run format:check |