Skip to content

feat(image): increase maximum image size limit to 20 MB #150

feat(image): increase maximum image size limit to 20 MB

feat(image): increase maximum image size limit to 20 MB #150

Workflow file for this run

name: CI Build
on:
push:
branches: [ main ]
pull_request:
branches: [ main ]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v6
- uses: actions/setup-java@v5
with:
java-version: "21"
distribution: "temurin"
- name: Cache Maven dependencies
uses: actions/cache@v5
with:
path: ~/.m2/repository
key: maven-${{ hashFiles('pom.xml') }}
restore-keys: maven-
- name: Build and test
run: ./mvnw clean verify