-
Notifications
You must be signed in to change notification settings - Fork 23
46 lines (44 loc) · 1.08 KB
/
haxeparser.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
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