Skip to content

Commit

Permalink
Container debug 3
Browse files Browse the repository at this point in the history
  • Loading branch information
antowaddle committed Dec 17, 2024
1 parent 796dacf commit 62583fd
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -46,9 +46,11 @@ jobs:
fi
- name: Run Cypress Mock Tests in Parallel
env:
CONTAINER_INDEX: ${{ matrix.container }}
run: |
echo "Running Cypress tests for container ${{ matrix.container }}..."
cd ./frontend && npm run test:cypress-ci -- --headless --no-sandbox --spec $(echo "$TEST_FILES" | tr ',' '\n' | awk -v container="${{ matrix.container }}" 'NR % 5 == container - 1' | tr '\n' ',')
echo "Running Cypress tests for container $CONTAINER_INDEX..."
cd ./frontend && npm run test:cypress-ci -- --headless --no-sandbox --spec $(echo "$TEST_FILES" | tr ',' '\n' | awk -v container="$CONTAINER_INDEX" 'NR % 5 == container - 1' | tr '\n' ',')
- uses: actions/upload-artifact@v4
if: ${{ always() }}
with:
Expand Down

0 comments on commit 62583fd

Please sign in to comment.