Skip to content

hotfix: 로그인 오류나지 않도록 refetchInterval 추가 #345

hotfix: 로그인 오류나지 않도록 refetchInterval 추가

hotfix: 로그인 오류나지 않도록 refetchInterval 추가 #345

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