feat: add fork it community Tunis 2025 #302
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: CheckGeolocationsDuplications | |
on: pull_request | |
jobs: | |
GeolocationsDuplicationsValidator: | |
name: GeolocationsDuplicationsValidator | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v3 | |
- name: Setup Node | |
uses: actions/setup-node@v3 | |
with: | |
node-version: 22 | |
cache: npm | |
cache-dependency-path: '**/package-lock.json' | |
- working-directory: page | |
run: npm install -D | |
- name: Validate Geolocations duplication | |
working-directory: tools | |
run: | | |
npm install -D | |
node mdParser.js | |
node geoCodes.js | |
node validateGeolocations.js |