[submission] from jan Ejen: lipu pi ma Jalone #746
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 TOMLs | |
| on: | |
| push: | |
| branches: ["main"] | |
| pull_request: | |
| permissions: | |
| contents: write | |
| jobs: | |
| validate: | |
| runs-on: ubuntu-latest | |
| name: Validate TOMLs | |
| steps: | |
| - name: Checkout | |
| uses: actions/checkout@v4 | |
| with: | |
| repository: ${{ github.event.pull_request.head.repo.full_name }} | |
| ref: ${{ github.event.pull_request.head.ref }} | |
| - name: Setup Yarn | |
| uses: threeal/setup-yarn-action@v2.0.0 | |
| with: | |
| cache: false | |
| - name: Run validate | |
| run: | | |
| cd utils/validate | |
| yarn install | |
| yarn run validate |