Skip to content

Commit

Permalink
ci: Update ci-run-tests.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
NGPixel authored Jan 16, 2025
1 parent d1d33e7 commit df27ba9
Showing 1 changed file with 28 additions and 1 deletion.
29 changes: 28 additions & 1 deletion .github/workflows/ci-run-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,34 @@ on:
- 'package.json'

jobs:
# -----------------------------------------------------------------
# PREPARE
# -----------------------------------------------------------------
prepare:
name: Prepare
runs-on: ubuntu-latest
outputs:
base_image_version: ${{ steps.baseimgversion.outputs.base_image_version }}

steps:
- uses: actions/checkout@v4
with:
fetch-depth: 1
fetch-tags: false

- name: Get Base Image Target Version
id: baseimgversion
run: |
echo "base_image_version=$(sed -n '1p' dev/build/TARGET_BASE)" >> $GITHUB_OUTPUT
# -----------------------------------------------------------------
# TESTS
# -----------------------------------------------------------------
tests:
name: Run Tests
uses: ./.github/workflows/tests.yml
needs: [prepare]
with:
ignoreLowerCoverage: false
ignoreLowerCoverage: false
skipSelenium: true
targetBaseVersion: ${{ needs.prepare.outputs.base_image_version }}

0 comments on commit df27ba9

Please sign in to comment.