Skip to content

Commit 8a65bd3

Browse files
authored
Create github-actions-script.sh
1 parent ea08127 commit 8a65bd3

File tree

1 file changed

+26
-0
lines changed

1 file changed

+26
-0
lines changed

github-actions-script.sh

Lines changed: 26 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,26 @@
1+
echo 1. What is in this directory?
2+
ls -a
3+
echo
4+
echo 2. Is Java installed?
5+
java -version
6+
echo 3. Is git installed?
7+
git --version
8+
echo 4. What about build tools?
9+
mvn --version
10+
gradle --version
11+
ant -version
12+
echo
13+
echo 5. Where is the Android SDK Root?
14+
echo $ANDROID_SDK_ROOT
15+
echo
16+
echo 6. Where are the Selenium jars?
17+
echo
18+
echo 7. What is the workspace location?
19+
echo $RUNNNER_WORKSPACE
20+
echo
21+
echo 8. Who is running this script?
22+
whoami
23+
echo 9. How is the disc laid out?
24+
df
25+
echo 10. What environment variables are available?
26+
env

0 commit comments

Comments
 (0)