test e2e during workflow

This commit is contained in:
eric sciple 2020-02-11 20:07:43 -05:00
parent 78a4b2143b
commit 220709cc67
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