Skip to content

Allow map answers to have any projection #15

Allow map answers to have any projection

Allow map answers to have any projection #15

Workflow file for this run

##
# Runs builds on GitHub pull requests to test that they should be working fine.
##
name: Test builds
on:
pull_request:
jobs:
test-client:
runs-on: ubuntu-latest
defaults:
run:
working-directory: client
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version: '20'
- name: Install dependencies
run: npm ci
- name: Build
run: npm run build
test-server:
runs-on: ubuntu-latest
defaults:
run:
working-directory: server
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version: '20'
- name: Install dependencies
run: npm ci
- name: Build
run: npm run build