Update team.json with my bio and remove me and Darlene from Welcomers… #179
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: Validate Team JSON | |
| on: | |
| push: | |
| paths: | |
| - 'public/team.json' | |
| pull_request: | |
| paths: | |
| - 'public/team.json' | |
| jobs: | |
| validate: | |
| name: Validate team.json | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v6 | |
| - name: Validate JSON format | |
| run: | | |
| if ! jq empty public/team.json 2>/dev/null; then | |
| echo "Error: team.json is not valid JSON" | |
| exit 1 | |
| fi | |
| echo "✓ team.json is valid JSON" |