This repository has been archived by the owner on Jun 15, 2024. It is now read-only.
Fix: 금융역량테스트 요구사항 반영 #18
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 |