Skip to content

Commit

Permalink
✅ modify github actions
Browse files Browse the repository at this point in the history
  • Loading branch information
juanesarango committed Dec 12, 2023
1 parent a5c372e commit 8fd34e8
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 6 deletions.
7 changes: 2 additions & 5 deletions .github/workflows/cli-test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -31,10 +31,7 @@ jobs:
echo "$OUTPUT"
# Check the stout for the expected output
EXPECTED="✅ Annotated file written to: test.csv\nFile annotated successfully."
if [ "$OUTPUT" = "$EXPECTED" ]; then
echo "Output matches expected"
else
echo "Output does not match expected"
if ! echo "$OUTPUT" | grep -q "File annotated successfully."; then
echo "CLI execution didn't work"
exit 1
fi
2 changes: 1 addition & 1 deletion .github/workflows/risk-scores-test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ jobs:

strategy:
matrix:
node-version: [ 14.x ]
node-version: [ 18.x ]

steps:
- uses: actions/checkout@v2
Expand Down

0 comments on commit 8fd34e8

Please sign in to comment.