Skip to content

add: delete old format support #169

add: delete old format support

add: delete old format support #169

Workflow file for this run

name: Build / Test / Check
on: [push, pull_request]
env:
NODE_VERSION: 20.13.1
GRADLE_VERSION: 8.8
jobs:
build:
timeout-minutes: 10
runs-on: ubuntu-latest
steps:
- name: Fast checkout
uses: actions/checkout@v4
- name: Set up JDK
uses: actions/setup-java@v4
with:
java-version: '21'
distribution: 'temurin'
- name: Use Node.js ${{ env.NODE_VERSION }}
uses: actions/setup-node@v4
with:
node-version: ${{ env.NODE_VERSION }}
- name: Build with Gradle
uses: eskatos/gradle-command-action@v3
with:
gradle-version: ${{ env.GRADLE_VERSION }}
arguments: '--stacktrace --info build'