TextEditor: workaround for missing ScrollEvent.SCROLL in certain vers… #113
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: Samples | |
on: | |
push: | |
branches: | |
- master | |
pull_request: | |
branches: | |
- master | |
jobs: | |
build-air: | |
runs-on: windows-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- uses: joshtynjala/setup-adobe-air-action@v1 | |
- uses: krdlab/setup-haxe@v1 | |
with: | |
haxe-version: 4.1.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 markdown-openfl-textfield --quiet | |
haxelib install feathersui --quiet | |
haxelib git moonshine-openfl-language-client https://github.com/Moonshine-IDE/moonshine-openfl-language-client.git --quiet | |
haxelib dev moonshine-feathersui-text-editor ${{ github.workspace }} | |
haxelib run lime config AIR_SDK ${{ env.AIR_HOME }} | |
- name: Build samples/simple-text-editor | |
working-directory: samples/simple-text-editor | |
run: | | |
haxelib run openfl build air | |
- name: Build samples/breakpoints | |
working-directory: samples/breakpoints | |
run: | | |
haxelib run openfl build air | |
- name: Build samples/code-actions | |
working-directory: samples/code-actions | |
run: | | |
haxelib run openfl build air | |
- name: Build samples/completion | |
working-directory: samples/completion | |
run: | | |
haxelib run openfl build air | |
- name: Build samples/resolve-completion | |
working-directory: samples/resolve-completion | |
run: | | |
haxelib run openfl build air | |
- name: Build samples/definition | |
working-directory: samples/definition | |
run: | | |
haxelib run openfl build air | |
- name: Build samples/diagnostics | |
working-directory: samples/diagnostics | |
run: | | |
haxelib run openfl build air | |
- name: Build samples/hover | |
working-directory: samples/hover | |
run: | | |
haxelib run openfl build air | |
- name: Build samples/signature-help | |
working-directory: samples/signature-help | |
run: | | |
haxelib run openfl build air | |
- name: Build samples/syntax-color-schemes | |
working-directory: samples/syntax-color-schemes | |
run: | | |
haxelib run openfl build air |