Skip to content

[FE] Feat/#592 핀 디테일의 핀 이미지 클릭 시 모달을 통해 크게 보이는 기능 구현 #209

[FE] Feat/#592 핀 디테일의 핀 이미지 클릭 시 모달을 통해 크게 보이는 기능 구현

[FE] Feat/#592 핀 디테일의 핀 이미지 클릭 시 모달을 통해 크게 보이는 기능 구현 #209

Workflow file for this run

name: Frontend CI For Test Validation
on:
# pull request open과 reopen 시 실행한다.
pull_request:
branches: [main, develop-FE]
paths: frontend/**
defaults:
run:
working-directory: ./frontend
jobs:
jest_cypress:
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
- name: Run Cypress
uses: cypress-io/github-action@v5
with:
working-directory: frontend
start: npm run dev