Skip to content

Show all types for a location on the map #1684

Show all types for a location on the map

Show all types for a location on the map #1684

Workflow file for this run

name: main
on:
push:
pull_request:
branches:
- main
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Check out repository
uses: actions/checkout@v2
- name: Set up Node
uses: actions/setup-node@v3
with:
node-version-file: .nvmrc
- name: Cache dependencies
uses: actions/cache@v2
with:
path: node_modules
key: ${{ runner.os }}-cache
- name: Install dependencies
working-directory: .
run: yarn
- name: Check formatting
working-directory: .
run: yarn format:check
- name: Run linter
working-directory: .
run: yarn lint:check
- name: Build application
working-directory: .
run: yarn build