ability to pass http server options to rest server #49
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: nodejs | |
on: | |
push: | |
pull_request: | |
jobs: | |
run-tests: | |
uses: vegardit/haxe-reusable-workflows/.github/workflows/test-with-haxe.yml@v1 | |
strategy: | |
fail-fast: false | |
matrix: | |
os: | |
- ubuntu-latest | |
haxe: | |
- 4.2.5 | |
with: | |
runner-os: ${{ matrix.os }} | |
haxe-version: ${{ matrix.haxe }} | |
haxe-libs: | | |
utest | |
json2object | |
test-node: tests/common-nodejs.hxml --class-path tests | |
before-tests: | | |
git clone https://github.com/core-haxe/promises | |
haxelib dev promises promises | |
git clone https://github.com/core-haxe/logging | |
haxelib dev logging logging | |
git clone https://github.com/core-haxe/queues-core | |
haxelib dev queues-core queues-core | |
git clone https://github.com/core-haxe/http | |
haxelib dev http http | |
git clone https://github.com/core-haxe/rest | |
haxelib dev rest rest | |
cp -f tests/package.json . | |
cp -f tests/package-lock.json . | |
npm install |