Skip to content

[FEAT] CI / CD 환경 설정 #3

[FEAT] CI / CD 환경 설정

[FEAT] CI / CD 환경 설정 #3

Workflow file for this run

name: Frontend CI
on:
pull_request:
branches:
- develop
paths:
- "frontend/**"
jobs:
build-and-test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Use Node.js
uses: actions/setup-node@v4
with:
node-version: "20"
cache: "npm"
- name: Install Dependencies
run: npm ci
working-directory: ./frontend
- name: Build
run: npm run build-dev
working-directory: ./frontend
- name: Test
run: npm test
working-directory: ./frontend