Fix: #301 프로젝트 생성 & 할 일 생성 날짜 종료일 수정 #40
Workflow file for this run
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: vitest-workflow | |
on: | |
pull_request: | |
types: [opened, reopened, synchronize, ready_for_review] | |
branches: | |
- main | |
- develop | |
paths: | |
- 'src/**' | |
jobs: | |
vitest: | |
if: github.event.pull_request.draft == false | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout code | |
uses: actions/checkout@v4 | |
- name: Install node.js v20 | |
uses: actions/setup-node@v4 | |
with: | |
node-version: 20 | |
- name: Install yarn dependencies | |
run: yarn install | |
- name: Run tests with vitest | |
run: yarn run test -- --passWithNoTests |