Skip to content

Commit

Permalink
Fix and add intermediate new project test
Browse files Browse the repository at this point in the history
  • Loading branch information
SomeRanDev committed Oct 20, 2023
1 parent 4fbdc03 commit 99583d5
Showing 1 changed file with 37 additions and 1 deletion.
38 changes: 37 additions & 1 deletion .github/workflows/test_newproject.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,22 +7,58 @@ on:
- main

jobs:
test_newproject:
test_newproject_direct:
runs-on: ubuntu-latest
steps:
- name: Setup Haxe 4.3.0
uses: krdlab/setup-haxe@v1
with:
haxe-version: 4.3.0

- name: Checkout
uses: actions/checkout@v3

- name: Check Haxe Version
run: haxe -version

- name: Install Reflaxe
run: haxelib git reflaxe /~https://github.com/SomeRanDev/reflaxe.git

- name: Make New Project Directory
run: mkdir TestProject

- name: Create Reflaxe Project
workingdirectory: TestProject
run: haxelib run reflaxe new Test test ts d

- name: Test Reflaxe Project
workingdirectory: TestProject
run: haxelib run reflaxe test

test_newproject_intermediate:
runs-on: ubuntu-latest
steps:
- name: Setup Haxe 4.3.0
uses: krdlab/setup-haxe@v1
with:
haxe-version: 4.3.0

- name: Checkout
uses: actions/checkout@v3

- name: Check Haxe Version
run: haxe -version

- name: Install Reflaxe
run: haxelib git reflaxe /~https://github.com/SomeRanDev/reflaxe.git

- name: Make New Project Directory
run: mkdir TestProject

- name: Create Reflaxe Project
workingdirectory: TestProject
run: haxelib run reflaxe new Test test ts i

- name: Test Reflaxe Project
workingdirectory: TestProject
run: haxelib run reflaxe test

0 comments on commit 99583d5

Please sign in to comment.