[FE] 처리할 에러코드 추가 #273
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: CI | |
on: | |
pull_request: | |
branches: ['develop', 'main'] | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout source code. | |
uses: actions/checkout@v3 | |
- name: Set up Node.js | |
uses: actions/setup-node@v1 | |
with: | |
node-version: '20.x' | |
- name: Install yarn | |
run: npm install -g yarn | |
- name: install dependency | |
run: yarn install | |
- name: build frontend | |
run: yarn workspace frontend build | |
- name: build backend | |
run: yarn workspace backend build | |
- name: run unit test | |
run: yarn workspace backend test |