Skip to content
This repository has been archived by the owner on Jun 15, 2024. It is now read-only.

Refactor: Service Layer 분리 및 코드 리팩토링 #26

Refactor: Service Layer 분리 및 코드 리팩토링

Refactor: Service Layer 분리 및 코드 리팩토링 #26

Workflow file for this run

name: PullRequest / ESlint
# develop 브랜치로 pull request 시 실행
on:
pull_request:
branches:
- develop
env:
NODE_VERSION: 18
jobs:
lint:
runs-on: ubuntu-latest
steps:
- name: Install NodeJS
uses: actions/setup-node@v2
with:
node-version: ${{ env.NODE_VERSION }}
- name: Code Checkout
uses: actions/checkout@v2
- name: Install Dependencies
run: npm ci
- name: Code Linting
run: npm run lint
- name: Code Prettier
run: npm run prettier