Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
39 changes: 39 additions & 0 deletions .github/workflows/push.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,39 @@
name: Data check

on:
push:
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
Loading