feat: 2024년 공휴일 정보 추가 #47
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: test | |
on: | |
push: | |
branches: | |
- main | |
pull_request: | |
branches: | |
- '**' | |
jobs: | |
test: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout code | |
uses: actions/checkout@v3 | |
- name: Use Node.js | |
uses: actions/setup-node@v3 | |
with: | |
node-version: '20' | |
cache: npm | |
- name: Install packages | |
run: npm ci | |
- name: Check compile error | |
run: npm run test:type | |
- name: Check lint error | |
run: npm run lint | |
- name: Run unit test | |
run: npm run test:unit |