Skip to content

new link registrate #169

new link registrate

new link registrate #169

Workflow file for this run

name: JSON check
on:
push:
paths:
- "**/*.json"
pull_request:
workflow_dispatch:
jobs:
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Check JSON syntax
uses: limitusus/json-syntax-check@v2
with:
pattern: "\\.json$"
- name: Check JSON formatting
uses: creyD/prettier_action@v4.3
with:
prettier_options: --write **/*.json
only_changed: True