Add table_report_n_rows configuration option to TableReport #5035
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 reports javascript' | |
| on: | |
| push: | |
| branches: | |
| - "main" | |
| pull_request: | |
| branches: | |
| - '*' | |
| jobs: | |
| test: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v7 | |
| - uses: prefix-dev/setup-pixi@v0.9.6 | |
| with: | |
| pixi-version: v0.68.0 | |
| environments: ci-py314-latest-optional-deps | |
| # we can freeze the environment and manually bump the dependencies to the | |
| # latest version time to time. | |
| frozen: true | |
| - name: Create the reports | |
| working-directory: skrub/_reporting/js_tests/ | |
| run: pixi run python make-reports | |
| - name: Cypress run | |
| uses: cypress-io/github-action@v7 | |
| with: | |
| working-directory: skrub/_reporting/js_tests/ |