test e2e during workflow (#185)

This commit is contained in:
eric sciple
2020-02-13 12:38:56 -05:00
committed by GitHub
parent 78a4b2143b
commit 4944275b95
7 changed files with 6297 additions and 22 deletions

11
__tests__/create-cache-files.sh Executable file
View File

@ -0,0 +1,11 @@
#!/bin/sh
# Validate args
prefix="$1"
if [ -z "$prefix" ]; then
echo "Must supply prefix argument"
exit 1
fi
mkdir test-cache
echo "$prefix $GITHUB_RUN_ID" > test-cache/test-file.txt