Skip to content

[BE] diary service 유닛테스트 #223

[BE] diary service 유닛테스트

[BE] diary service 유닛테스트 #223

Workflow file for this run

name: CI
on:
pull_request:
branches: ['develop', 'main']
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [20.x]
steps:
- uses: actions/checkout@v3
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v3
- name: install dependencies
run: yarn install
- name: build frontend
run: yarn frontend build
- name: build backend
run: yarn backend build
- name: run test
run: yarn backend test