Skip to content

Commit df27ba9

Browse files
authored
ci: Update ci-run-tests.yml
1 parent d1d33e7 commit df27ba9

File tree

1 file changed

+28
-1
lines changed

1 file changed

+28
-1
lines changed

.github/workflows/ci-run-tests.yml

Lines changed: 28 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,34 @@ on:
1313
- 'package.json'
1414

1515
jobs:
16+
# -----------------------------------------------------------------
17+
# PREPARE
18+
# -----------------------------------------------------------------
19+
prepare:
20+
name: Prepare
21+
runs-on: ubuntu-latest
22+
outputs:
23+
base_image_version: ${{ steps.baseimgversion.outputs.base_image_version }}
24+
25+
steps:
26+
- uses: actions/checkout@v4
27+
with:
28+
fetch-depth: 1
29+
fetch-tags: false
30+
31+
- name: Get Base Image Target Version
32+
id: baseimgversion
33+
run: |
34+
echo "base_image_version=$(sed -n '1p' dev/build/TARGET_BASE)" >> $GITHUB_OUTPUT
35+
36+
# -----------------------------------------------------------------
37+
# TESTS
38+
# -----------------------------------------------------------------
1639
tests:
40+
name: Run Tests
1741
uses: ./.github/workflows/tests.yml
42+
needs: [prepare]
1843
with:
19-
ignoreLowerCoverage: false
44+
ignoreLowerCoverage: false
45+
skipSelenium: true
46+
targetBaseVersion: ${{ needs.prepare.outputs.base_image_version }}

0 commit comments

Comments
 (0)