Skip to content

added support for unicode (e.g. \\u0000) in regex #19

added support for unicode (e.g. \\u0000) in regex

added support for unicode (e.g. \\u0000) in regex #19

Workflow file for this run

name: haxeparser
on:
push:
branches:
- master
pull_request:
branches:
- master
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
haxe-version: ['4.3.1', 'nightly']
steps:
- name: Checkout sources
uses: actions/checkout@v1
- name: install Hashlink
uses: pxshadow/[email protected]
- name: Use Node.js 12
uses: actions/setup-node@v1
with:
node-version: 12
- name: Run npm install
run: npm ci
- name: Install Haxe version ${{ matrix.haxe-version }}
run: |
npx lix download haxe ${{ matrix.haxe-version }}
npx lix use haxe ${{ matrix.haxe-version }}
- name: Run lix download
run: npx lix download
- name: Print versions
run: |
npx haxe -version
npx neko -version
npx haxelib list
- name: Run eval tests
run: npx haxe build.hxml
- name: Run NodeJs tests
run: npx haxe buildJs.hxml
- name: Run Hashlink tests
run: npx haxe buildHl.hxml
- name: Run JVM tests
run: npx haxe buildJvm.hxml