Add sectorization for VVHM FIR, modified airport data #161
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: Data check | |
| on: | |
| pull_request: | |
| branches: [master] | |
| jobs: | |
| check-dat: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - name: Install node | |
| uses: actions/setup-node@v4 | |
| with: | |
| node-version: 22.x | |
| - name: Install deps | |
| shell: sh | |
| working-directory: ./scripts | |
| run: yarn | |
| - name: Check VATSpy.dat | |
| shell: sh | |
| working-directory: ./scripts | |
| run: yarn validate-dat | |
| check-geojson: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - name: Install node | |
| uses: actions/setup-node@v4 | |
| with: | |
| node-version: 22.x | |
| - name: Install deps | |
| shell: sh | |
| working-directory: ./scripts | |
| run: yarn | |
| - name: Check Boundaries.geojson | |
| shell: sh | |
| working-directory: ./scripts | |
| run: yarn validate-schema | |
| validate-contributor: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - name: Install node | |
| uses: actions/setup-node@v4 | |
| with: | |
| node-version: 22.x | |
| - name: Install deps | |
| shell: sh | |
| working-directory: ./scripts | |
| run: yarn | |
| - name: Check Boundaries.geojson | |
| shell: sh | |
| working-directory: ./scripts | |
| run: yarn check-contributor --login="${{ github.event.pull_request.user.login }}" --failWhenMissing |