Skip to content

Add an Attribution Banner to Map with Contribution Link #23

Add an Attribution Banner to Map with Contribution Link

Add an Attribution Banner to Map with Contribution Link #23

Workflow file for this run

name: ci
on:
pull_request:
jobs:
test:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v4
- name: Install npm
uses: actions/setup-node@v3
with:
cache: "npm"
- name: Install dependencies
run: npm ci
- name: Check formatting
run: npm run lint-check
- name: Check for type errors
run: npm run type-check
- name: Check for build errors
run: npm run build
- name: Run unit tests
run: npm run test:unit
- name: Run end-to-end tests
run: npm run test:e2e