Skip to content

[FE] Refactor/#642: ๋ถ๋งˆํฌ ๋ฐ ์ „์ฒด๋ณด๊ธฐ ํŽ˜์ด์ง€ API ๋กœ์ง ์ˆ˜์ • ๋ฐ React-Query ์ ์šฉ #247

[FE] Refactor/#642: ๋ถ๋งˆํฌ ๋ฐ ์ „์ฒด๋ณด๊ธฐ ํŽ˜์ด์ง€ API ๋กœ์ง ์ˆ˜์ • ๋ฐ React-Query ์ ์šฉ

[FE] Refactor/#642: ๋ถ๋งˆํฌ ๋ฐ ์ „์ฒด๋ณด๊ธฐ ํŽ˜์ด์ง€ API ๋กœ์ง ์ˆ˜์ • ๋ฐ React-Query ์ ์šฉ #247

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