Add paste support for desktop and web + fix maxLength input (#253) #74
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: CI | |
on: [push, pull_request, workflow_dispatch, repository_dispatch] | |
jobs: | |
build: | |
strategy: | |
matrix: | |
haxe-version: ["4.2.5", stable, nightly] | |
target: [html5, hl, neko, flash, cpp] | |
fail-fast: false | |
runs-on: ubuntu-latest | |
steps: | |
- uses: lix-pm/setup-lix@master | |
- uses: actions/checkout@v2 | |
- run: haxelib dev flixel-ui . | |
- uses: HaxeFlixel/setup-flixel@master | |
with: | |
haxe-version: ${{matrix.haxe-version}} | |
flixel-versions: dev | |
target: ${{matrix.target}} | |
run-tests: true |