Skip to content

Commit

Permalink
server 빌드 워크플로우 업데이트 (server-node 디렉토리 반영)
Browse files Browse the repository at this point in the history
- 워크플로우 이름: book-store Server -> book-store server-node
- 트리거 경로: server/** -> server-node/**
- 작업 디렉토리: ./server -> ./server-node
- 캐시 의존성 경로: ./server/package-lock.json -> ./server-node/package-lock.json
  • Loading branch information
jihwooon committed Mar 24, 2024
1 parent 7e7c9d8 commit cecf378
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions .github/workflows/server.yml
Original file line number Diff line number Diff line change
@@ -1,20 +1,20 @@
name: book-store Server
name: book-store server-node

on:
push:
branches: [ main ]
paths:
- "server/**"
- "server-node/**"
pull_request:
branches: [ main ]
paths:
- "server/**"
- "server-node/**"
jobs:
build:
runs-on: ubuntu-latest
defaults:
run:
working-directory: ./server
working-directory: ./server-node

steps:
- uses: actions/checkout@v4
Expand All @@ -23,7 +23,7 @@ jobs:
with:
node-version: 21.2.0
cache: "npm"
cache-dependency-path: ./server/package-lock.json
cache-dependency-path: ./server-node/package-lock.json

- name: install
run: npm install
Expand Down

0 comments on commit cecf378

Please sign in to comment.