Skip to content

feat: 새 노트 작성 페이지 #22

feat: 새 노트 작성 페이지

feat: 새 노트 작성 페이지 #22

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: v20.14.0
- name: Install Dependencies
run: yarn install
- name: Check ESLint
run: yarn run lint
- name: Check Prettier
run: yarn run prettier:check
- name: Check Unit Test
run: yarn run test