fix: Update TFM URL for App Store #178
Workflow file for this run
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
on: | |
pull_request: | |
branches: | |
- main | |
name: Pull request workflow | |
jobs: | |
validate_earn_strategies: | |
name: Validate Earn Strategies | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout repository | |
uses: actions/checkout@v3 | |
with: | |
token: ${{ secrets.GITHUB_TOKEN }} | |
submodules: true | |
- name: Install JSON-Schema-Validator | |
run: npm install -g jsonschema | |
- name: Validate Earn Strategies Schema | |
run: jsonschema -i ./cms/earn/strategies.json ./schemas/strategies.schema.json |