Skip to content

Refactor JavaScript integration and improve code readability. #85

Refactor JavaScript integration and improve code readability.

Refactor JavaScript integration and improve code readability. #85

Workflow file for this run

name: πŸ”— GHA
on: [push, pull_request]
concurrency:
group: ci-${{github.actor}}-${{github.head_ref || github.run_number}}-${{github.ref}}-runner
cancel-in-progress: true
jobs:
get-version:
name: πŸ†š Get godot version
uses: ./.github/workflows/get_version.yml
static-checks:
name: πŸ“Š Static checks
uses: ./.github/workflows/static_checks.yml
needs: get-version
with:
version: ${{ needs.get-version.outputs.version }}
android-build:
name: πŸ€– Android
needs: [static-checks, get-version]
uses: ./.github/workflows/android_builds.yml
with:
version: ${{ needs.get-version.outputs.version }}
ios-build:
name: 🍏 iOS
needs: [static-checks, get-version]
uses: ./.github/workflows/ios_builds.yml
with:
version: ${{ needs.get-version.outputs.version }}
linux-build:
name: 🐧 Linux
needs: [static-checks, get-version]
uses: ./.github/workflows/linux_builds.yml
with:
version: ${{ needs.get-version.outputs.version }}
macos-build:
name: 🍎 macOS
needs: [static-checks, get-version]
uses: ./.github/workflows/macos_builds.yml
with:
version: ${{ needs.get-version.outputs.version }}
windows-build:
name: 🏁 Windows
needs: [static-checks, get-version]
uses: ./.github/workflows/windows_builds.yml
with:
version: ${{ needs.get-version.outputs.version }}
web-build:
name: 🌐 Web
needs: [static-checks, get-version]
uses: ./.github/workflows/web_builds.yml
with:
version: ${{ needs.get-version.outputs.version }}