refactor: 식물 사전 검색 결과 리팩터링, 데모데이 피드백 반영, 버그 수정 #19
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: Frontend Build Test | |
on: | |
push: | |
paths: 'frontend/**' | |
pull_request: | |
branches: | |
- develop | |
- main | |
paths: 'frontend/**' | |
defaults: | |
run: | |
working-directory: frontend | |
permissions: | |
pull-requests: write | |
checks: write | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Set up Repository | |
uses: actions/checkout@v3 | |
- name : Set up Node 18.16.0 | |
uses: actions/setup-node@v3 | |
with: | |
node-version: 18.16.0 | |
- name: Cache node_modules | |
id: cache | |
uses: actions/cache@v3 | |
with: | |
path: '**/node_modules' | |
key: ${{ runner.os }}-node-${{ hashFiles('**/package-lock.json') }} | |
restore-keys: | | |
${{ runner.os }}-node- | |
- name: npm clean install | |
run: npm ci | |
if: steps.cache.outputs.cache-hit != 'true' | |
- name: npm build | |
run: npm run build | |
- name: storyBook build | |
run: npm run build-storybook | |
if: always() | |
- name: notificate on slack if build failed | |
uses: 8398a7/action-slack@v3 | |
with: | |
status: ${{ job.status }} | |
author_name: 프론트엔드 빌드 결과 알림 | |
fields: repo, message, commit, author, action, eventName, ref, workflow, job, took | |
env: | |
SLACK_WEBHOOK_URL: ${{ secrets.SLACK_WEBHOOK_URL }} | |
if: always() |