[DREAM-729] Lazy loaded Action menu positioning is incorrect when opened at the bottom of the page. #662
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-performance | |
| on: | |
| pull_request: | |
| merge_group: | |
| branches: | |
| - main | |
| types: | |
| - checks_requested | |
| permissions: {} | |
| concurrency: | |
| group: test-performance-${{ github.head_ref || github.run_id }} | |
| cancel-in-progress: true | |
| env: | |
| FERRUM_PROCESS_TIMEOUT: 30 | |
| jobs: | |
| load-matrix: | |
| name: Load test matrix | |
| runs-on: ubuntu-latest | |
| permissions: | |
| contents: read | |
| outputs: | |
| matrix: ${{ steps.set-matrix.outputs.matrix }} | |
| steps: | |
| - uses: actions/checkout@3d3c42e5aac5ba805825da76410c181273ba90b1 # v7 | |
| with: | |
| persist-credentials: false | |
| - id: set-matrix | |
| run: echo "matrix=$(cat .github/version-matrix.json | jq -c .)" >> $GITHUB_OUTPUT | |
| performance: | |
| name: Performance (${{ matrix.label }}) | |
| runs-on: ubuntu-latest | |
| needs: load-matrix | |
| permissions: | |
| contents: read | |
| strategy: | |
| fail-fast: false | |
| matrix: | |
| include: ${{ fromJson(needs.load-matrix.outputs.matrix) }} | |
| steps: | |
| - uses: actions/checkout@3d3c42e5aac5ba805825da76410c181273ba90b1 # v7 | |
| with: | |
| persist-credentials: false | |
| - uses: ruby/setup-ruby@6aaa311d81eba98ae12eaffbcb63296ace0efcde # v1 | |
| with: | |
| ruby-version: ${{ matrix.ruby_version }} | |
| bundler-cache: true | |
| cache-version: ${{ matrix.rails_version }}-${{ matrix.ruby_version }} | |
| - name: Build | |
| run: | | |
| bundle config unset deployment | |
| bundle install --jobs 4 --retry 3 | |
| env: | |
| RUBY_VERSION: ${{ matrix.ruby_version }} | |
| RAILS_VERSION: ${{ matrix.rails_version }} | |
| - name: Test | |
| run: | | |
| bundle exec rake test:performance | |
| env: | |
| RUBY_VERSION: ${{ matrix.ruby_version }} | |
| RAILS_VERSION: ${{ matrix.rails_version }} |