Skip to content

[FE] feature/#259 ๋กœ๊ทธ์ธ ๋ฒ„ํŠผ ๊ตฌํ˜„ (๊ด€๋ จ ๋ฆฌ๋‹ค์ด๋ ‰ํŠธ ์„ค์ •), ํ† ํฐ ๊ด€๋ จ ์ž‘์—… #11

[FE] feature/#259 ๋กœ๊ทธ์ธ ๋ฒ„ํŠผ ๊ตฌํ˜„ (๊ด€๋ จ ๋ฆฌ๋‹ค์ด๋ ‰ํŠธ ์„ค์ •), ํ† ํฐ ๊ด€๋ จ ์ž‘์—…

[FE] feature/#259 ๋กœ๊ทธ์ธ ๋ฒ„ํŠผ ๊ตฌํ˜„ (๊ด€๋ จ ๋ฆฌ๋‹ค์ด๋ ‰ํŠธ ์„ค์ •), ํ† ํฐ ๊ด€๋ จ ์ž‘์—… #11

Workflow file for this run

name: Frontend CI For Test Validation
# ์–ด๋–ค ์ด๋ฒคํŠธ๊ฐ€ ๋ฐœ์ƒํ•˜๋ฉด ์‹คํ–‰ํ• ์ง€ ๊ฒฐ์ •
on:
#pull request open๊ณผ reopen ์‹œ ์‹คํ–‰ํ•œ๋‹ค.
pull_request:
branches: [main, develop]
paths: frontend/**
defaults:
run:
working-directory: ./frontend
jobs:
jest:
runs-on: ubuntu-22.04
steps:
- name: Checkout repository
uses: actions/checkout@v2
- name: Setup Node.js
uses: actions/setup-node@v2
with:
node-version: "18"
- name: Install node modules
run: npm install
- name: Run Jest test
run: npm run test