Skip to content

✨ Feat: λ§ˆμ΄νŽ˜μ΄μ§€ UI μž‘μ—… #56

✨ Feat: λ§ˆμ΄νŽ˜μ΄μ§€ UI μž‘μ—…

✨ Feat: λ§ˆμ΄νŽ˜μ΄μ§€ UI μž‘μ—… #56

Workflow file for this run

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