Skip to content

Bump the npm group with 2 updates #5175

Bump the npm group with 2 updates

Bump the npm group with 2 updates #5175

Workflow file for this run

name: ci
on:
pull_request:
push:
branches:
- master
concurrency:
group: ${{ github.repository }}-${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: ${{ github.event_name == 'pull_request' }}
jobs:
test:
name: test (${{ matrix.ruby }}, ${{ matrix.rails }})
runs-on: ${{ matrix.os }}
timeout-minutes: 15
strategy:
fail-fast: false
matrix:
ruby:
- "3.4"
- "3.3"
- "3.2"
os:
- ubuntu-latest
rails:
- rails_80
- rails_72
- rails_71
- rails_70
exclude:
- ruby: '3.4'
os: ubuntu-latest
rails: rails_70
steps:
- uses: actions/checkout@v5
- name: Configure bundler (default)
run: |
echo "BUNDLE_GEMFILE=Gemfile" >> "$GITHUB_ENV"
if: matrix.rails == 'rails_80'
- name: Configure bundler (alternative)
run: |
echo "BUNDLE_GEMFILE=gemfiles/${{ matrix.rails }}/Gemfile" >> "$GITHUB_ENV"
if: matrix.rails != 'rails_80'
- uses: ruby/setup-ruby@v1
with:
ruby-version: ${{ matrix.ruby }}
bundler-cache: true
rubygems: latest
- name: Create test app
run: bin/rake setup
- name: Restore cached RSpec runtimes
uses: actions/cache@v4
with:
path: tmp/parallel_runtime_rspec.log
key: runtimes-rspec-${{ matrix.ruby }}-${{ matrix.rails }}-${{ hashFiles('tmp/parallel_runtime_rspec.log') }}
- name: Run RSpec tests
env:
COVERAGE: true
run: |
bin/parallel_rspec
RSPEC_FILESYSTEM_CHANGES=true bin/rspec
- name: Restore cached cucumber runtimes
uses: actions/cache@v4
with:
path: tmp/parallel_runtime_cucumber.log
key: runtimes-cucumber-${{ matrix.ruby }}-${{ matrix.rails }}-${{ hashFiles('tmp/parallel_runtime_cucumber.log') }}
- name: Run Cucumber features
env:
COVERAGE: true
run: |
bin/parallel_cucumber --fail-fast
bin/cucumber --profile filesystem-changes
bin/cucumber --profile class-reloading
- name: Rename coverage file by matrix run
run: mv coverage/coverage.xml coverage/coverage-ruby-${{ matrix.ruby }}-${{ matrix.rails }}.xml
- uses: actions/upload-artifact@v4
with:
name: coverage-ruby-${{ matrix.ruby }}-${{ matrix.rails }}
path: coverage
if-no-files-found: error
upload_coverage:
name: Upload Coverage
runs-on: ubuntu-latest
# Do not run on forks
if: ${{ github.repository_owner == 'activeadmin' }}
needs: [test]
steps:
- uses: actions/checkout@v5
- uses: actions/download-artifact@v5
with:
path: coverage
pattern: coverage-ruby-*
merge-multiple: true
- uses: codecov/codecov-action@v5
with:
token: ${{ secrets.CODECOV_TOKEN }}
directory: coverage
fail_ci_if_error: true
test_docs_build:
name: Build docs
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v5
- uses: tj-actions/changed-files@v46
id: changed-files
with:
files: |
docs/**
package*.json
yarn.lock
- uses: actions/setup-node@v4
if: steps.changed-files.outputs.any_changed == 'true'
with:
node-version: 22
cache: yarn
- run: yarn install
if: steps.changed-files.outputs.any_changed == 'true'
- run: yarn docs:build
if: steps.changed-files.outputs.any_changed == 'true'