Skip to content

feat: 사서 대출권수 변경 #149

feat: 사서 대출권수 변경

feat: 사서 대출권수 변경 #149

Workflow file for this run

name: 테스트
on:
push:
branches:
- develop
pull_request:
workflow_dispatch:
jobs:
test:
runs-on: ubuntu-latest
steps:
- name: Checkout source code
uses: actions/checkout@v3
- name: Cache node modules
uses: actions/cache@v3
with:
path: node_modules
key: ${{ runner.OS }}-master-build-${{ hashFiles('**/package-lock.json') }}
restore-keys: |
${{ runner.OS }}-build-
${{ runner.OS }}-
- name: Install Pnpm
uses: pnpm/action-setup@v2
with:
version: 8.x
- name: Install Dependencies
run: pnpm install
- name: Build
run: pnpm build