Fix #15986: Animate loading dots while response is loading (#24489) #2
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: Frontend unit tests | |
| permissions: read-all | |
| on: | |
| merge_group: | |
| types: [checks_requested] | |
| push: | |
| branches: | |
| - develop | |
| - release-* | |
| pull_request: | |
| branches: | |
| - develop | |
| - release-* | |
| concurrency: | |
| group: ${{ github.workflow }}-${{ github.event.pull_request.number || github.run_id }} | |
| cancel-in-progress: true | |
| jobs: | |
| generate-job-strategy-matrix: | |
| name: Generate job strategy matrix | |
| runs-on: ubuntu-22.04 | |
| outputs: | |
| job-strategy-matrix: ${{ steps.generate.outputs.job-strategy-matrix }} | |
| steps: | |
| - name: Generate job strategy matrix | |
| id: generate | |
| env: | |
| standard-test-runs: 2 | |
| flakes-test-runs: 10 | |
| run: | | |
| if ${{ github.event_name == 'push' && github.repository == 'oppia/oppia' && github.ref == 'refs/heads/develop'}} | |
| then | |
| JOB_STRATEGY_MATRIX=$(node -e "let r=[]; for(let i = 1; i <= ${{ env.flakes-test-runs }}; i++) { r.push(i) }; console.log(JSON.stringify(r));") | |
| echo "job-strategy-matrix=$JOB_STRATEGY_MATRIX" >> $GITHUB_OUTPUT | |
| else | |
| JOB_STRATEGY_MATRIX=$(node -e "let r=[]; for(let i = 1; i <= ${{ env.standard-test-runs }}; i++) { r.push(i) }; console.log(JSON.stringify(r));") | |
| echo "job-strategy-matrix=$JOB_STRATEGY_MATRIX" >> $GITHUB_OUTPUT | |
| fi | |
| frontend-karma-tests: | |
| name: Run all tests | |
| needs: generate-job-strategy-matrix | |
| runs-on: ubuntu-22.04 | |
| strategy: | |
| max-parallel: 25 | |
| matrix: | |
| num_runs: ${{ fromJson(needs.generate-job-strategy-matrix.outputs.job-strategy-matrix) }} | |
| fail-fast: false | |
| steps: | |
| - name: Checkout repository so that local actions can be used | |
| uses: actions/checkout@v4 | |
| - name: Merge develop and set up dependencies | |
| uses: ./.github/actions/merge-develop-and-set-up-dependencies | |
| - name: Describe filesystem | |
| run: | | |
| pwd | |
| ls /home/runner/work | |
| ls /home/runner/work/oppia | |
| ls /home/runner/work/oppia/oppia | |
| echo $GITHUB_WORKSPACE | |
| - name: Suppress ENOSPC error from chokidar file watcher. See https://stackoverflow.com/a/32600959. | |
| run: echo fs.inotify.max_user_watches=524288 | sudo tee -a /etc/sysctl.conf && sudo sysctl -p | |
| - name: Run frontend tests (attempt ${{ matrix.num_runs }}) | |
| id: run_frontend_tests | |
| run: python -m scripts.run_frontend_tests --check_coverage | |
| - name: Upload frontend coverage reports as an artifact | |
| if: ${{ always() }} | |
| uses: actions/upload-artifact@v4 | |
| with: | |
| name: frontend-coverage-${{ matrix.num_runs }} | |
| path: /home/runner/work/oppia/karma_coverage_reports | |
| permissions: | |
| pull-requests: write | |
| report-failure: | |
| name: Report failure | |
| needs: frontend-karma-tests | |
| runs-on: ubuntu-22.04 | |
| if: ${{ failure() && github.event_name == 'push' && github.repository == 'oppia/oppia' && github.ref == 'refs/heads/develop'}} | |
| steps: | |
| - name: Checkout repository | |
| uses: actions/checkout@v4 | |
| - name: Report failure if failed on oppia/oppia develop branch | |
| uses: ./.github/actions/send-webhook-notification | |
| with: | |
| message: "A frontend test failed on the upstream develop branch." | |
| webhook-url: ${{ secrets.BUILD_FAILURE_ROOM_WEBHOOK_URL }} |