Skip to content

마이페이지 제안취소, 리뷰완료 시 해당 게시물 리스트에서 제거 #254

마이페이지 제안취소, 리뷰완료 시 해당 게시물 리스트에서 제거

마이페이지 제안취소, 리뷰완료 시 해당 게시물 리스트에서 제거 #254

Workflow file for this run

name: frontend_ci
on:
push:
branches:
- dev/FE
paths: 'frontend/**'
pull_request:
branches:
- dev/FE
paths: 'frontend/**'
jobs:
test:
runs-on: ubuntu-latest
defaults:
run:
working-directory: ./frontend
steps:
- name: Checkout code
uses: actions/checkout@v3
- name: 의존성을 설치한다
run: npm install
- name: 테스트를 수행한다
run: npm run test