Skip to content

[FE] feature/#259 로그인 버튼 구현 (관련 리다이렉트 설정), 토큰 관련 작업 #9

[FE] feature/#259 로그인 버튼 구현 (관련 리다이렉트 설정), 토큰 관련 작업

[FE] feature/#259 로그인 버튼 구현 (관련 리다이렉트 설정), 토큰 관련 작업 #9

Workflow file for this run

name: Frontend CI For Test Validation
# 어떤 이벤트가 발생하면 실행할지 결정
on:
#pull request open과 reopen 시 실행한다.
pull_request:
branches: [main, develop]
paths: frontend/**
defaults:
run:
working-directory: ./frontend
jobs:
jest:
runs-on: ubuntu-22.04
steps:
- name: Checkout repository
uses: actions/checkout@v2
- name: Setup Node.js
uses: actions/setup-node@v2
with:
node-version: "18"
- name: Install node modules
run: npm install
- name: Run Jest test
run: npm run test