🛠️ (API) Remove version specification for pnpm setup in deployment wo… #683
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: 🧑🚀 Check | |
| on: | |
| push: | |
| branches: | |
| - main | |
| - dev | |
| pull_request: | |
| branches: | |
| - main | |
| - dev | |
| jobs: | |
| lint: | |
| runs-on: ubuntu-latest | |
| name: ⚙️ Linting | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - name: Setup pnpm | |
| uses: pnpm/action-setup@v4 | |
| - name: Install dependencies | |
| run: pnpm install | |
| - name: Run Eslint | |
| run: pnpm lint | |
| env: | |
| PUBLIC_SVGL_VERSION: v5 | |
| svgs-size: | |
| runs-on: ubuntu-latest | |
| name: 📦 SVGs Size | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - name: Setup pnpm | |
| uses: pnpm/action-setup@v4 | |
| - name: Install dependencies | |
| run: pnpm install | |
| - name: Check SVGs size | |
| run: pnpm check:size |