fix: hide progress bar in Code Editor for empty projects #363
Workflow file for this run
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| name: Test | |
| on: | |
| pull_request: | |
| branches: [main] | |
| types: [labeled] | |
| workflow_dispatch: | |
| inputs: | |
| env: | |
| description: 'Environment to run tests against' | |
| required: true | |
| type: environment | |
| concurrency: | |
| group: ${{ github.workflow }}-${{ github.ref }} | |
| cancel-in-progress: true | |
| jobs: | |
| test: | |
| name: Test Suite | |
| runs-on: ubuntu-latest | |
| environment: ${{ github.event.inputs.env || 'dev' }} | |
| if: ${{ github.repository == 'playcanvas/editor' && ((github.event.label.name == 'test' && github.actor == 'kpal81xd') || github.event_name == 'workflow_dispatch') }} | |
| steps: | |
| - name: Checkout code | |
| uses: actions/checkout@v6 | |
| - name: Setup Docker Buildx | |
| uses: docker/setup-buildx-action@v3 | |
| - name: Log in to the Container registry | |
| uses: docker/login-action@v3 | |
| with: | |
| registry: ghcr.io | |
| username: ${{ github.actor }} | |
| password: ${{ secrets.GITHUB_TOKEN }} | |
| - name: Build test image | |
| uses: docker/build-push-action@v6 | |
| with: | |
| context: . | |
| cache-from: type=gha | |
| cache-to: type=gha,mode=max | |
| load: true | |
| tags: playcanvas/editor:latest | |
| env: | |
| DOCKER_BUILD_SUMMARY: false | |
| - name: Run tests | |
| run: | | |
| docker run --rm \ | |
| -e PC_HOST=${{ secrets.PC_HOST }} \ | |
| -e PC_LOGIN_HOST=${{ secrets.PC_LOGIN_HOST }} \ | |
| -e PC_LAUNCH_HOST=${{ secrets.PC_LAUNCH_HOST }} \ | |
| -e PC_LOCAL_FRONTEND=true \ | |
| -e PC_COOKIE_NAME=${{ secrets.PC_COOKIE_NAME }} \ | |
| -e PC_COOKIE_VALUE=${{ secrets.PC_COOKIE_VALUE }} \ | |
| -v ${{ github.workspace }}/test-results:/usr/src/test/test-results \ | |
| playcanvas/editor:latest | |
| - name: Upload test results | |
| uses: actions/upload-artifact@v6 | |
| if: always() | |
| with: | |
| name: test-results | |
| path: test-results | |
| retention-days: 5 |