Skip to content

[FE] 변경된 일정 조회 명세가 작동하도록 팀 캘린더와 통합 캘린더 리팩터링 #582

[FE] 변경된 일정 조회 명세가 작동하도록 팀 캘린더와 통합 캘린더 리팩터링

[FE] 변경된 일정 조회 명세가 작동하도록 팀 캘린더와 통합 캘린더 리팩터링 #582

Workflow file for this run

name: frontend test for PR to develop
on:
pull_request:
branches:
- develop
paths:
- frontend/**
defaults:
run:
working-directory: frontend
jobs:
unit-test:
runs-on: ubuntu-latest
permissions:
contents: write
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
steps:
- name: Checkout
uses: actions/checkout@v3
- name: Setup node with cache
uses: actions/setup-node@v3
with:
node-version: 18
cache: 'npm'
cache-dependency-path: '**/package-lock.json'
- name: Install dependencies
run: npm ci
- name: Run build
run: npm run build:dev
- name: Run unit test
run: npm run test:ci