Skip to content

페이지네이션 로직 변경 및 메인페이지 전체 필터 추가 (#620) #327

페이지네이션 로직 변경 및 메인페이지 전체 필터 추가 (#620)

페이지네이션 로직 변경 및 메인페이지 전체 필터 추가 (#620) #327

Workflow file for this run

name: frontend_ci
on:
push:
branches:
- dev/FE
paths: "frontend/**"
pull_request:
branches:
- dev/FE
paths: "frontend/**"
defaults:
run:
working-directory: ./frontend
jobs:
Cypress-Test:
runs-on: ubuntu-latest
steps:
- name: Checkout GitCode
uses: actions/checkout@v3
- name: Setup node.js
uses: actions/setup-node@v3
with:
node-version: 18
cache: "npm"
cache-dependency-path: ./frontend/package-lock.json
- name: install dependencies
run: npm install
- name: Cypress run
uses: cypress-io/github-action@v6
with:
working-directory: ./frontend
start: npm run dev