Add e2e test

This commit is contained in:
Jill Regan
2026-02-18 17:38:00 -05:00
parent 6911316fe3
commit e7fe4397d9
2 changed files with 22 additions and 0 deletions

View File

@@ -0,0 +1,7 @@
#!/bin/bash
set -e
if [ "$STEP_OUTCOME" != "failure" ]; then
echo "Expected action to fail on invalid ref, got: $STEP_OUTCOME"
exit 1
fi
echo "Action correctly failed on invalid ref"