Skip to content

fix: 스크랩 생성 중 날짜 오류로 인해 스크랩 안되는 문제 수정 #82

fix: 스크랩 생성 중 날짜 오류로 인해 스크랩 안되는 문제 수정

fix: 스크랩 생성 중 날짜 오류로 인해 스크랩 안되는 문제 수정 #82

Workflow file for this run

name: CI Workflow
on:
workflow_dispatch:
push:
branches:
- develop
paths-ignore:
- 'README.md'
pull_request:
branches:
- develop
types:
- opened
- reopened
- synchronize
paths-ignore:
- 'README.md'
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v2
- 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 -- --passWithNoTests