Dis 139 mobile adaption blog details 2 #701
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: CI - Frontend (pnpm) | |
| on: | |
| push: | |
| branches: [main] | |
| pull_request: | |
| branches: [main] | |
| jobs: | |
| frontend: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: 🧾 Checkout code | |
| uses: actions/checkout@v3 | |
| - name: 🔧 Set up Node.js | |
| uses: actions/setup-node@v3 | |
| with: | |
| node-version: 20 | |
| - name: 📥 Install pnpm | |
| run: npm install -g pnpm | |
| - name: 📦 Install dependencies | |
| run: pnpm install | |
| - name: 🔍 Type Check | |
| run: pnpm run type-check | |
| - name: ✅ Lint | |
| run: pnpm run lint | |
| - name: 🧪 Run Tests | |
| run: pnpm test | |
| - name: 🏗️ Build | |
| run: pnpm run build |