Skip to content

MARA-37 마이페이지 화면 구현 #12

MARA-37 마이페이지 화면 구현

MARA-37 마이페이지 화면 구현 #12

Workflow file for this run

name: Production-Build-CI
on:
pull_request:
branches:
- main
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [18.x]
steps:
- name: Checkout source code.
uses: actions/checkout@v2
# node 버전 환경 설정
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v3
with:
node-version: ${{ matrix.node-version }}
- name: Install Dependencies
run: yarn install --frozen-lockfile
- name: Build
run: yarn build