Skip to content

FE-50 ✨공용컴포넌트 헤더 구현 #37

FE-50 ✨공용컴포넌트 헤더 구현

FE-50 ✨공용컴포넌트 헤더 구현 #37

Workflow file for this run

name: Continuous Integration
on:
workflow_dispatch:
pull_request:
types: [opened, synchronize]
branches:
- main
- master
- develop
- feat/*
- hotfix/*
- epic/*
jobs:
build:
name: Build
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v3
- name: Setup Node.js
uses: actions/setup-node@v3
with:
node-version: '20.15.0'
- name: Cache dependencies
id: cache
uses: actions/cache@v3
with:
path: '**/node_modules'
key: ${{ runner.os }}-node-${{ hashFiles('**/package-lock.json') }}
restore-keys: |
${{ runner.os }}-node-
- name: Install Dependencies
if: steps.cache.outputs.cache-hit != 'true'
run: npm ci
- name: Build test
run: npm run build