Skip to content

refactor: 리팩토링 #144

refactor: 리팩토링

refactor: 리팩토링 #144

Workflow file for this run

name: 'CI'
on:
- pull_request
jobs:
ci:
name: CI
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v3
- name: Setup Node.js
uses: actions/setup-node@v3
with:
node-version: v18.14.2
- name: Install Dependencies
run: npm install
- name: Check ESLint
run: npm run lint
- name: Check Prettier
run: npm run prettier:check
- name: Check Unit Test
run: npm run test