Skip to content

Update beta version to 5.3.0-beta-01 #60

Update beta version to 5.3.0-beta-01

Update beta version to 5.3.0-beta-01 #60

Workflow file for this run

name: Run Checks
on:
pull_request:
branches:
- "**"
jobs:
test:
runs-on: ubuntu-24.04
steps:
- uses: actions/checkout@v5
- name: Set up JDK 17
uses: actions/setup-java@v4
with:
java-version: "17"
distribution: "temurin"
- name: Enable Homebrew
uses: Homebrew/actions/setup-homebrew@main
- uses: tecolicom/actions-use-homebrew-tools@v1
with:
tools: clang-format
cache: yes
- name: Use Homebrew clang-format 21.1.3
run: |
brew link --overwrite --force clang-format >/dev/null
export PATH="/home/linuxbrew/.linuxbrew/bin:$PATH"
clang-format --version
- name: Setup Node.js
uses: actions/setup-node@v5
with:
node-version: "22"
- name: Install dependencies
run: npm ci
- name: Check Code formatting
run: npm run format:check