Skip to content

feat(FE): PatientHeader 컴포넌트 구현 & 공통 레이아웃 #91

feat(FE): PatientHeader 컴포넌트 구현 & 공통 레이아웃

feat(FE): PatientHeader 컴포넌트 구현 & 공통 레이아웃 #91

Workflow file for this run

name: BE CI
on:
pull_request:
branches:
- '**'
jobs:
build:
runs-on: ubuntu-latest
defaults:
run:
working-directory: ./backend
steps:
- name: Git Checkout
uses: actions/checkout@v3
- name: Set up Node.js
uses: actions/setup-node@v3
with:
node-version-file: .nvmrc
cache: yarn
cache-dependency-path: '**/yarn.lock'
- name: Cache dependencies
uses: actions/cache@v3
with:
path: ./node_modules
key: ${{ runner.os }}-node-${{ hashFiles('**/yarn.lock') }}
restore-keys: |
${{ runner.os }}-node-modules-
- name: Install Dependencies
run: yarn install --immutable
- name: Build
run: yarn build