Skip to content

feat: 뱃지 이미지 변경 #595

feat: 뱃지 이미지 변경

feat: 뱃지 이미지 변경 #595

Workflow file for this run

name: Pull Request
on:
pull_request:
branches: ['main', 'dev']
jobs:
build-react:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Setup Node.js
uses: actions/setup-node@v3
with:
node-version: 18.x
cache: 'npm'
- run: npm ci
- name: Build React
run: npm run build --if-present
build-storybook:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Setup Node.js
uses: actions/setup-node@v3
with:
node-version: 18.x
cache: 'npm'
- run: npm ci
- name: Build Storybook
run: npm run build-storybook --if-present