Temporal precedence thoughts #723
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: json | |
| on: | |
| push: | |
| pull_request: | |
| types: [opened, synchronize, reopened, ready_for_review] | |
| jobs: | |
| json-lint: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: git clone | |
| uses: actions/checkout@v4 | |
| - name: set up node | |
| uses: actions/setup-node@v4 | |
| with: | |
| node-version: 18.8 | |
| - name: install prettier | |
| run: npm install [email protected] --global | |
| - name: lint .json files with prettier | |
| run: prettier -c "**/*.json" |