🔧 fix: broken stars-history chart in readme #10
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: CI | |
| on: | |
| pull_request: | |
| jobs: | |
| verify: | |
| name: Code checks and build verification | |
| runs-on: ubuntu-latest | |
| env: | |
| HUSKY: "0" | |
| steps: | |
| - name: Checkout | |
| uses: actions/checkout@v4 | |
| - name: Setup Node.js | |
| uses: actions/setup-node@v4 | |
| with: | |
| node-version: "20" | |
| cache: npm | |
| cache-dependency-path: package-lock.json | |
| - name: Install root dependencies | |
| run: npm ci | |
| - name: Verify icons library package | |
| run: npm run generate:icons && npm run verify:root | |
| - name: Install showcase dependencies | |
| run: npm ci | |
| working-directory: showcase | |
| - name: Build showcase | |
| run: npm run build | |
| working-directory: showcase |