Skip to content

chore(deps): update mysql docker tag to v9 #1290

chore(deps): update mysql docker tag to v9

chore(deps): update mysql docker tag to v9 #1290

Workflow file for this run

name: PR
on:
pull_request:
branches:
- master
jobs:
commitlint:
name: Check Commit Message
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
with:
fetch-depth: 0
- uses: wagoid/commitlint-github-action@v6
with:
configFile: package.json
failOnWarnings: true
build:
name: Build
needs: [ commitlint ]
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [ ubuntu-latest ]
jdk: [ 21 ]
fail-fast: false
steps:
- uses: actions/checkout@v4
- name: Setup JDK ${{ matrix.jdk }}
uses: actions/setup-java@v4
with:
distribution: 'temurin'
java-version: ${{ matrix.jdk }}
- name: Setup Node.js
uses: actions/setup-node@v4
with:
node-version: 20
- name: Build with Gradle
run: ./gradlew clean build