fix: when using SET_INITIAL_DATE_IF_NULL in STJ only set MinValue if JSON value is null and runtime type is not nullable (#600)
#1201
Workflow file for this run
This file contains hidden or 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: Prettier | |
| on: pull_request | |
| jobs: | |
| prettier: | |
| name: Prettier JSON Formatter | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Check out Git repository | |
| uses: actions/checkout@v4 | |
| - name: Set up Node.js | |
| uses: actions/setup-node@v4 | |
| with: | |
| node-version: 14 | |
| - name: Install Prettier | |
| run: npm install prettier | |
| - name: Run Prettier | |
| uses: wearerequired/lint-action@v2 | |
| with: | |
| github_token: "${{ secrets.github_token }}" | |
| eslint: false | |
| prettier: true | |
| auto_fix: false | |
| prettier_args: --ignore-path .prettierignore |