β¨ Feat: λ§μ΄νμ΄μ§ UI μμ #56
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 Pipeline | |
| on: | |
| pull_request: | |
| branches: [develop, main] | |
| push: | |
| branches: [develop, main] | |
| jobs: | |
| eslint-check: | |
| runs-on: self-hosted | |
| timeout-minutes: 10 | |
| steps: | |
| # μ½λ κ°μ Έμ€κΈ° | |
| - name: Checkout code | |
| uses: actions/checkout@v3 | |
| # Node.js νκ²½ μ€μ | |
| - name: Setup Node.js | |
| uses: actions/setup-node@v4 | |
| with: | |
| node-version: '18' | |
| cache: 'npm' | |
| # μμ‘΄μ± μ€μΉ | |
| - name: Install dependencies | |
| run: npm ci | |
| # ESLint μ€ν | |
| - name: Run ESLint | |
| run: npm run lint |