Bump primer upstream 0.50.0 #219
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-system | |
| on: | |
| pull_request: | |
| merge_group: | |
| branches: | |
| - main | |
| types: | |
| - checks_requested | |
| permissions: | |
| contents: read | |
| concurrency: | |
| group: test-system-${{ github.head_ref || github.run_id }} | |
| cancel-in-progress: true | |
| env: | |
| FERRUM_PROCESS_TIMEOUT: 30 | |
| jobs: | |
| system: | |
| name: System (${{ matrix.browser }}) | |
| runs-on: ubuntu-latest | |
| strategy: | |
| fail-fast: false | |
| matrix: | |
| browser: | |
| - chrome | |
| # - firefox # Firefox is currently disabled due to intermittent CI failures. | |
| steps: | |
| - uses: actions/checkout@v6 | |
| - uses: ruby/setup-ruby@v1 | |
| with: | |
| ruby-version: "3.2" | |
| bundler-cache: true | |
| - uses: actions/setup-node@v5 | |
| with: | |
| node-version: 20 | |
| cache: "npm" | |
| cache-dependency-path: | | |
| package-lock.json | |
| demo/package-lock.json | |
| - name: Build | |
| run: | | |
| npm ci | |
| cd demo && npm ci | |
| - name: Test | |
| run: | | |
| USE_BROWSER=${{ matrix.browser }} bundle exec rake test:system |