mirror of
https://github.com/sasjs/adapter.git
synced 2025-12-10 17:04:36 +00:00
11 lines
689 B
Bash
Executable File
11 lines
689 B
Bash
Executable File
#!/bin/bash
|
|
|
|
if npm run cy:run -- --spec "cypress/integration/sasjs.tests.ts" ; then
|
|
echo "Cypress sasjs testing passed!"
|
|
else
|
|
curl -X POST --header "Content-Type:application/json" --data '{"username":"GitHub CI - Adapter SASJS-TESTS (FAIL)", "content":"Automated sasjs-tests failed on the @sasjs/adapter PR on following link.\n'$2'", "avatar_url":"https://i.ibb.co/Lpk7Xvq/error-outline.png"}' $1
|
|
# curl -X POST --data-urlencode "payload={\"channel\":\"#sasjs\", \"username\":\"GitHub CI\", \"text\":\"Publish of a @sasjs/adapter has been canceled because of the failing sasjs-tests!\", \"icon_emoji\":\":warning:\"}" $1
|
|
echo "Cypress sasjs testing failed!"
|
|
exit 1
|
|
fi
|