Skip to content

Commit 174ba8e

Browse files
committed
add: testing for ie installation script
1 parent 0e0ba36 commit 174ba8e

File tree

1 file changed

+16
-0
lines changed

1 file changed

+16
-0
lines changed

.github/workflows/scenario-testing.yaml

+16
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,22 @@ permissions:
1313
id-token: write
1414
contents: read
1515
jobs:
16+
test-ie-installation:
17+
runs-on: ubuntu-latest
18+
steps:
19+
- uses: actions/checkout@v2
20+
- name: Check ie installation
21+
run: |
22+
cat scripts/install_from_release.sh | /bin/bash
23+
if ! command -v ie; then
24+
echo "ie not found"
25+
exit 1
26+
fi
27+
if [ ! -d "~/scenarios" ]
28+
then
29+
echo "scenarios not found"
30+
exit 1
31+
fi
1632
test-ocd-scenarios:
1733
runs-on: ubuntu-latest
1834
# This is needed in order to obtain OIDC tokens to sign this pipeline into

0 commit comments

Comments
 (0)