UPD for velocity lib rework #154
This file contains hidden or 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: Test JS build | |
| on: | |
| push: | |
| branches: | |
| - '**' | |
| pull_request: | |
| branches: | |
| - '**' | |
| jobs: | |
| build: | |
| strategy: | |
| matrix: | |
| os: [windows-latest] | |
| haxe: [4.3.3] | |
| fail-fast: true | |
| runs-on: windows-latest | |
| steps: | |
| # Checkout & install haxe | |
| - uses: actions/checkout@v2 | |
| - uses: krdlab/setup-haxe@v1 | |
| with: | |
| haxe-version: ${{ matrix.haxe }} | |
| - run: haxe -version | |
| # Install libs | |
| - run: haxe setup.hxml | |
| - run: haxelib list | |
| # Try to build | |
| - run: haxe build.js.hxml | |