Skip to content

feat: User 로그인, 회원가입 구현 #7

feat: User 로그인, 회원가입 구현

feat: User 로그인, 회원가입 구현 #7

Workflow file for this run

name: PR Test
on:
pull_request:
branches: [ "main", "develop" ]
jobs:
CI:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Setup Node.js environment
uses: actions/[email protected]
with:
node-version: 18.x
- name: Install modules & Build
run: |
npm ci
npm run build --if-present
- name: Run test
run: |
npm test
npm run test:e2e