github actions workflow
This commit is contained in:
@@ -2,7 +2,7 @@
|
||||
|
||||
echo "" > test-output.txt
|
||||
expected=$'hey\nhey\nhey'
|
||||
if [[ $(uname) == *"MINGW"* ]] || [ $TRAVIS_OS_NAME = "windows" ]; then
|
||||
if [[ $(uname) == *"MINGW"* ]] || [ $CI_OS_NAME = "windows-latest" ]; then
|
||||
expected=$'"hey" \r\n"hey" \r\n"hey"'
|
||||
fi
|
||||
|
||||
|
||||
@@ -1,11 +1,11 @@
|
||||
#! /bin/bash
|
||||
|
||||
# Something is broken in the Node dependencies on Mac, so don't bother.
|
||||
if [ "$TRAVIS_OS_NAME" = "osx" ]; then
|
||||
if [ "$CI_OS_NAME" = "macos-latest" ]; then
|
||||
exit 0
|
||||
fi
|
||||
|
||||
if [ ! -z "$TRAVIS_OS_NAME" ]; then
|
||||
if [ ! -z "$CI_OS_NAME" ]; then
|
||||
npm install pdf-lib
|
||||
haxelib install hxnodejs
|
||||
fi
|
||||
|
||||
Reference in New Issue
Block a user