Navigators: add backgroundSkin and disabledBackgroundSkin #777
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 |