Skip to content

Feat: 로그인/회원가입 기능 구현 #3

Feat: 로그인/회원가입 기능 구현

Feat: 로그인/회원가입 기능 구현 #3

Workflow file for this run

name: Check the source code
on:
pull_request:
branches:
- main
jobs:
test:
name: Check the source code
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Install packages
run: npm ci
- name: Prettier
run: npm run format
- name: Lint
run: npm run lint