chore(deps)(deps-dev): bump the dependencies group with 3 updates (#30) #96
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 | |
| permissions: | |
| contents: read | |
| on: | |
| push: | |
| branches: [main] | |
| pull_request: | |
| branches: [main] | |
| jobs: | |
| quality: | |
| name: Code Quality | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout code | |
| uses: actions/checkout@v6 | |
| - name: Setup Node.js | |
| uses: actions/setup-node@v6 | |
| with: | |
| node-version: "20.x" | |
| cache: "npm" | |
| - name: Install dependencies | |
| run: npm ci | |
| - name: Type check | |
| run: npm run typecheck | |
| - name: Lint | |
| run: npm run lint | |
| - name: Build package | |
| run: npm run build | |
| - name: Run tests | |
| run: npm test -- --coverage | |
| - name: Create summary | |
| if: success() | |
| run: | | |
| echo "## ✅ All Quality Checks Passed!" >> $GITHUB_STEP_SUMMARY | |
| echo "" >> $GITHUB_STEP_SUMMARY | |
| echo "- ✅ Type checking" >> $GITHUB_STEP_SUMMARY | |
| echo "- ✅ Linting" >> $GITHUB_STEP_SUMMARY | |
| echo "- ✅ Build successful" >> $GITHUB_STEP_SUMMARY | |
| echo "- ✅ Tests passed" >> $GITHUB_STEP_SUMMARY |