Skip to content

Prevent packets from having dangerously sized collections (Electric Boogaloo) #262

Prevent packets from having dangerously sized collections (Electric Boogaloo)

Prevent packets from having dangerously sized collections (Electric Boogaloo) #262

Workflow file for this run

name: Build+Test Server
on:
push:
paths:
- "mapsync-server/**/*"
pull_request:
paths:
- "mapsync-server/**/*"
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Using nodejs v18
uses: actions/setup-node@v6
with:
node-version: "18"
- run: npm install
working-directory: ./mapsync-server
- run: npm run build
working-directory: ./mapsync-server
- run: npm run test
working-directory: ./mapsync-server