Skip to content

[홈 페이지] 패널 삭제 기능 #64

[홈 페이지] 패널 삭제 기능

[홈 페이지] 패널 삭제 기능 #64

Workflow file for this run

name: Frontend CI
on:
pull_request:
branches: [dev]
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
node: [18.x]
steps:
- uses: actions/checkout@v3
- name: Set Node.js ${{ matrix.node }}
uses: actions/setup-node@v3
with:
node-version: ${{ matrix.node }}
- name: Install dependencies
run: yarn install
- name: Build production bundle
run: yarn build
- name: Run tests
run: yarn test