Skip to content

[Design] ๊ทธ๋ฃน ์ฐธ์—ฌ/๊ฐ€์ž… ์‹ ์ฒญ ํŽ˜์ด์ง€ UI ์ž‘์„ฑ #541

[Design] ๊ทธ๋ฃน ์ฐธ์—ฌ/๊ฐ€์ž… ์‹ ์ฒญ ํŽ˜์ด์ง€ UI ์ž‘์„ฑ

[Design] ๊ทธ๋ฃน ์ฐธ์—ฌ/๊ฐ€์ž… ์‹ ์ฒญ ํŽ˜์ด์ง€ UI ์ž‘์„ฑ #541

Workflow file for this run

name: FrontEnd CI Pipeline
on:
pull_request:
branches:
- '**'
jobs:
build-and-test:
if: contains(github.event.pull_request.labels.*.name, '๐ŸŽจ Front-end')
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v2
- name: Set up Node.js for Frontend
uses: actions/setup-node@v3
with:
node-version: '20'
- name: Install dependencies
run: npm install
- name: Run Frontend tests
run: npm run test -w=frontend
- name: Build Frontend
run: npm run build -w=frontend