Skip to content

fix: allow Date field format is yyyy/mm/dd #2815

fix: allow Date field format is yyyy/mm/dd

fix: allow Date field format is yyyy/mm/dd #2815

Workflow file for this run

name: test
on:
push:
branches:
- main
- 'renovate/**'
pull_request:
jobs:
test:
name: Node.js ${{ matrix.os }} ${{ matrix.node-version }}
runs-on: ${{ matrix.os }}
strategy:
matrix:
node-version: [16.x, 18.x]
os: [ubuntu-latest, windows-latest, macos-latest]
steps:
- run: git config --global core.autocrlf false
- uses: actions/checkout@v3
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v3
with:
node-version: ${{ matrix.node-version }}
cache: yarn
- run: yarn install --frozen-lockfile
- run: yarn build
- run: yarn test:ci