Skip to content

[FE] ScheduleBar 스타일 수정 #21

[FE] ScheduleBar 스타일 수정

[FE] ScheduleBar 스타일 수정 #21

Workflow file for this run

name: frontend-ci
on:
pull_request:
branches:
- develop
paths:
- frontend/**
jobs:
unit-test:
runs-on: ubuntu-latest
permissions:
contents: write
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
env:
working-directory: ./frontend
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
working-directory: ${{ env.working-directory }}
- name: Run unit test
run: npm run test:ci
working-directory: ${{ env.working-directory }}