Bump vite_rails from 3.11.0 to 3.11.1 in the production-dependencies group across 1 directory #1020
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-selectors | |
| on: | |
| pull_request: | |
| permissions: | |
| contents: read | |
| concurrency: | |
| group: test-selectors-${{ github.head_ref || github.run_id }} | |
| cancel-in-progress: true | |
| env: | |
| FERRUM_PROCESS_TIMEOUT: 30 | |
| jobs: | |
| selectors: | |
| name: CSS coverage | |
| runs-on: ubuntu-latest-8-cores | |
| steps: | |
| - name: Checkout | |
| uses: actions/checkout@v7 | |
| - name: Setup Ruby | |
| uses: ruby/setup-ruby@v1 | |
| with: | |
| ruby-version: "3.2" | |
| bundler-cache: true | |
| - name: Setup Node | |
| uses: actions/setup-node@v7 | |
| with: | |
| node-version: 24 | |
| cache: "npm" | |
| - name: NPM Build | |
| run: npm ci | |
| env: | |
| # Disable CSS minification for tests | |
| CI: "false" | |
| - name: Test CSS | |
| run: bundle exec rake test:component_css |