From 1868d9fffc52e7c944ba246eefd1057df6b5edf4 Mon Sep 17 00:00:00 2001 From: arturovt Date: Thu, 1 Feb 2024 14:43:31 +0200 Subject: [PATCH] refactor: update GH config files --- .github/workflows/pr-validation.yml | 2 +- .github/workflows/release.yml | 3 ++- .github/workflows/trunk.yml | 3 ++- 3 files changed, 5 insertions(+), 3 deletions(-) diff --git a/.github/workflows/pr-validation.yml b/.github/workflows/pr-validation.yml index d5a520c83..6330bf269 100644 --- a/.github/workflows/pr-validation.yml +++ b/.github/workflows/pr-validation.yml @@ -105,7 +105,7 @@ jobs: run: yarn ${{ matrix.script }} - name: Upload an integration test artifact - if: ${{ matrix.script == 'integration:ng16' }} + if: ${{ startsWith( matrix.script, 'integration:' ) }} uses: ./.github/actions/upload-integration-test-artifact with: script: ${{ matrix.script }} diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index ff520632c..693f45052 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -79,6 +79,7 @@ jobs: matrix: script: - 'integration:ng16' + - 'integration:ng17' - 'test:types' steps: @@ -96,7 +97,7 @@ jobs: run: yarn ${{ matrix.script }} - name: Upload an integration test artifact - if: ${{ matrix.script == 'integration:ng16' }} + if: ${{ startsWith( matrix.script, 'integration:' ) }} uses: ./.github/actions/upload-integration-test-artifact with: script: ${{ matrix.script }} diff --git a/.github/workflows/trunk.yml b/.github/workflows/trunk.yml index 0b6de3331..580023e56 100644 --- a/.github/workflows/trunk.yml +++ b/.github/workflows/trunk.yml @@ -79,6 +79,7 @@ jobs: matrix: script: - 'integration:ng16' + - 'integration:ng17' - 'test:types' steps: @@ -96,7 +97,7 @@ jobs: run: yarn ${{ matrix.script }} - name: Upload an integration test artifact - if: ${{ matrix.script == 'integration:ng16' }} + if: ${{ startsWith( matrix.script, 'integration:' ) }} uses: ./.github/actions/upload-integration-test-artifact with: script: ${{ matrix.script }}