Bump prefix-dev/setup-pixi from 0.9.0 to 0.9.1 in the actions group (… #2843
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@v5 | |
| - uses: prefix-dev/setup-pixi@v0.9.1 | |
| with: | |
| pixi-version: v0.41.3 | |
| environments: ci-py312-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 make-reports | |
| - name: Cypress run | |
| uses: cypress-io/github-action@v6 | |
| with: | |
| working-directory: skrub/_reporting/js_tests/ |