Skip to content

Spring Boot 환경을 추가하라 #85

Spring Boot 환경을 추가하라

Spring Boot 환경을 추가하라 #85

Workflow file for this run

name: book-store server-node
on:
push:
branches: [ main ]
paths:
- "server-node/**"
pull_request:
branches: [ main ]
paths:
- "server-node/**"
jobs:
build:
runs-on: ubuntu-latest
defaults:
run:
working-directory: ./server-node
steps:
- uses: actions/checkout@v4
- name: Setup node.js
uses: actions/setup-node@v4
with:
node-version: 21.2.0
cache: "npm"
cache-dependency-path: ./server-node/package-lock.json
- name: install
run: npm install
- name: test
run: npm run test:only-changed
- name: lint
run: npm run lint