This repository has been archived by the owner on Jun 15, 2024. It is now read-only.
Refactor: Service Layer 분리 및 코드 리팩토링 #26
Workflow file for this run
This file contains 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: 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 |