Skip to content

πŸ’„ input type=date width=100% μˆ˜μ • #551

πŸ’„ input type=date width=100% μˆ˜μ •

πŸ’„ input type=date width=100% μˆ˜μ • #551

Workflow file for this run

name: PR Test Workflow
# Pull Request 이벀트 μ‹œ μ›Œν¬ν”Œλ‘œμš° μ‹€ν–‰
on:
push:
branches:
- main
- develop
pull_request:
branches:
- main
- develop
jobs:
test:
runs-on: ubuntu-latest
steps:
# 리포지토리 체크아웃
- name: Checkout repository
uses: actions/checkout@v2
# Node.js μ„€μ •
- name: Set up Node.js
uses: actions/setup-node@v2
with:
node-version: '18'
# μ˜μ‘΄μ„± μ„€μΉ˜
- name: Install dependencies
run: npm install
# ν…ŒμŠ€νŠΈ μ‹€ν–‰
- name: Run tests
run: npm test