Skip to content

Refactor useCoordinateInfo Hook: Add WMTS Support, Optimize Layer Fetching, and Improve Performance #1262

Refactor useCoordinateInfo Hook: Add WMTS Support, Optimize Layer Fetching, and Improve Performance

Refactor useCoordinateInfo Hook: Add WMTS Support, Optimize Layer Fetching, and Improve Performance #1262

Workflow file for this run

name: Test build of react-util
on: pull_request
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [20.x, 22.x]
steps:
- name: Checkout sources 🔰
uses: actions/checkout@v4
- name: Setup Node.js 🧮 in version ${{ matrix.node-version }}
uses: actions/setup-node@v4
with:
node-version: ${{ matrix.node-version }}
- name: Cache Node.js modules 💾
uses: actions/cache@v4
with:
path: ~/.npm
key: "${{ runner.OS }}-node-${{ hashFiles('**/package-lock.json') }}"
restore-keys: |
${{ runner.OS }}-node-
${{ runner.OS }}-
- name: Install dependencies ⏬
run: npm ci
- name: Lint code 💄
run: npm run lint
- name: Typecheck code ✅
run: npm run typecheck
- name: Test code ✅
run: npm run test-ci
- name: Build artifacts 🏗️
run: npm run build