Skip to content

Controls: more 0.0 minimum sizes #764

Controls: more 0.0 minimum sizes

Controls: more 0.0 minimum sizes #764

Workflow file for this run

name: CLI
on:
push:
pull_request:
branches:
- master
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: krdlab/setup-haxe@v1
with:
haxe-version: 4.0.5
- name: Set up Haxelib dependencies
run: |
haxelib install lime 7.8.0 --quiet
haxelib install openfl 8.9.7 --quiet
haxelib install actuate --quiet
haxelib install hxargs --quiet
haxelib dev feathersui ${{ github.workspace }}
- name: Run CLI
run: |
haxelib run feathersui new-project MyProject
cd MyProject
haxelib run openfl build html5
- name: Run CLI (--vscode)
run: |
haxelib run feathersui new-project MyVSCodeProject --vscode
cd MyVSCodeProject
haxelib run openfl build html5