Skip to content

Commit

Permalink
devops: fix Docker test-result uploads
Browse files Browse the repository at this point in the history
  • Loading branch information
mxschmitt committed Oct 14, 2021
1 parent 25a8023 commit 299d3d6
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion .github/workflows/tests_docker.yml
Expand Up @@ -61,7 +61,9 @@ jobs:
run: docker exec playwright-docker-${{ matrix.tag }}-test npm run build
- name: Run "npm run test" inside docker
run: docker exec -e INSIDE_DOCKER=1 -e CI=1 playwright-docker-${{ matrix.tag }}-test xvfb-run --auto-servernum --server-args="-screen 0 1280x960x24" npm run test
- run: sudo ./utils/upload_flakiness_dashboard.sh ./test-results/report.json
- name: Make all writable for uploading the test-results
run: sudo chmod -R 777 .
- run: ./utils/upload_flakiness_dashboard.sh ./test-results/report.json
if: always()
- uses: actions/upload-artifact@v1
if: ${{ always() }}
Expand Down

0 comments on commit 299d3d6

Please sign in to comment.