feat: add optional prop to set aria-label
on OL canvas element in shadow root
#486
Workflow file for this run
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: Run tests | |
on: | |
pull_request: | |
types: [opened, synchronize] | |
branches: | |
- main | |
env: | |
PNPM_VERSION: 8.6.6 | |
NODE_VERSION: 18.16.1 | |
jobs: | |
vitest: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: pnpm/action-setup@v3.0.0 | |
with: | |
version: ${{ env.PNPM_VERSION }} | |
- uses: actions/setup-node@v4 | |
with: | |
node-version: ${{ env.NODE_VERSION }} | |
cache: "pnpm" | |
cache-dependency-path: "**/pnpm-lock.yaml" | |
- run: pnpm install --no-frozen-lockfile | |
- run: pnpm test | |
env: | |
VITE_APP_OS_PLACES_API_KEY: ${{ secrets.OS_API_KEY }} | |
VITE_APP_OS_VECTOR_TILES_API_KEY: ${{ secrets.OS_API_KEY }} |