Updating Medellin and South Florida Bevy Links #252
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
--- | |
name: Check | |
on: | |
pull_request: | |
jobs: | |
Setup: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Setup | |
run: make setup | |
Markdown: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- run: npm run check:markdown | |
Spelling: | |
runs-on: ubuntu-latest | |
needs: Setup | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Spelling | |
run: make spelling | |
Links: | |
runs-on: ubuntu-latest | |
needs: Setup | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Links | |
run: make links |