add jan Telakoman #3
This file contains 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: | |
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/[email protected] | |
with: | |
cache: false | |
- name: Run validate | |
run: | | |
cd utils | |
yarn install | |
yarn run validate |