Skip to content

๐Ÿ›Fix: ์—ฌ๋Ÿฌ๊ฐ€์ง€ ์ˆ˜์ • #125

๐Ÿ›Fix: ์—ฌ๋Ÿฌ๊ฐ€์ง€ ์ˆ˜์ •

๐Ÿ›Fix: ์—ฌ๋Ÿฌ๊ฐ€์ง€ ์ˆ˜์ • #125

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