Skip to content

feat:버튼 css 수정 및 action 설정 #9

feat:버튼 css 수정 및 action 설정

feat:버튼 css 수정 및 action 설정 #9

Workflow file for this run

name: Build and Test
on:
push:
branches: ['main']
pull_request:
branches: ['main']
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [20.x]
steps:
- uses: actions/checkout@v4
- name: Setup node.js
uses: actions/setup-node@v3
with:
node-version: ${{ matrix.node-version }}
cache: 'npm'
- name: Install dependencies
run: npm install
- name: Build project
run: |
CI=false npm run build