Skip to content

fix(data): replace 13 literal "lat,lng" gmaps_links with real coordin… #202

fix(data): replace 13 literal "lat,lng" gmaps_links with real coordin…

fix(data): replace 13 literal "lat,lng" gmaps_links with real coordin… #202

Workflow file for this run

name: CI
on:
push:
branches: [main]
pull_request:
jobs:
validate-data:
runs-on: ubuntu-latest
timeout-minutes: 5
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version: 20
- name: Validate place and competition data
run: npm run validate
unit-tests:
runs-on: ubuntu-latest
timeout-minutes: 10
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version: 20
cache: npm
- run: npm ci
- run: npm run test:unit
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version: 20
cache: npm
- run: npm ci
- run: npm run build