This commit is contained in:
Elio Bischof
2024-11-27 12:28:41 +01:00
parent 16a1bcba20
commit 0bae8d916a

View File

@@ -18,9 +18,9 @@ jobs:
id: prepare-matrix id: prepare-matrix
run: | run: |
if [ -z "${{ github.event.schedule }}" ]; then if [ -z "${{ github.event.schedule }}" ]; then
echo 'matrix=["test:acceptance:qa", "test:acceptance:prod"]' >> $GITHUB_OUTPUT echo "matrix=$(echo '[\"test:acceptance:qa\", \"test:acceptance:prod\"]' | jq -R .)" >> $GITHUB_OUTPUT
else else
echo 'matrix=["format --check", "lint", "test:unit", "test:integration", "test:acceptance"]' >> $GITHUB_OUTPUT echo "matrix=$(echo '[\"format --check\", \"lint\", \"test:unit\", \"test:integration\", \"test:acceptance\"]' | jq -R .)" >> $GITHUB_OUTPUT
fi fi
quality: quality: