Skip to content

Bump rollup from 4.19.1 to 4.22.4 in /styles (#305) #704

Bump rollup from 4.19.1 to 4.22.4 in /styles (#305)

Bump rollup from 4.19.1 to 4.22.4 in /styles (#305) #704

Workflow file for this run

# Derived from planetiler (Apache License)
# https://github.com/onthegomap/planetiler/blob/main/.github/workflows/maven.yml
name: Maven CI
on:
push:
branches: [ main ]
pull_request:
branches: [ main ]
jobs:
test_and_lint:
name: Run unit tests and check formatting
runs-on: ubuntu-latest
timeout-minutes: 15
steps:
- uses: actions/checkout@v3
- name: Set up JDK 21
uses: actions/setup-java@v3
with:
java-version: 21
distribution: 'temurin'
cache: 'maven'
- name: Run unit tests
working-directory: tiles
run: mvn --batch-mode -no-transfer-progress test
- name: Ensure code formatted with mvn spotless:apply
working-directory: tiles
run: mvn spotless:check