Skip to content

Bump the npm_and_yarn group across 1 directory with 3 updates (#78) #114

Bump the npm_and_yarn group across 1 directory with 3 updates (#78)

Bump the npm_and_yarn group across 1 directory with 3 updates (#78) #114

Workflow file for this run

name: Unit tests
on:
push:
branches: [main, next]
pull_request:
branches: [main, next]
jobs:
# Ruby unit tests
rspec:
runs-on: ubuntu-latest
strategy:
matrix:
ruby: ["3.0", "3.1", "3.2", "3.3"]
gemfile: [
dev/gemfiles/rails-6.1.x.gemfile,
dev/gemfiles/rails-7.0.x.gemfile,
dev/gemfiles/rails-7.1.x.gemfile,
Gemfile
]
exclude:
# Exclude rubies < 3.1 for ActiveModel >= 7.2
- ruby: "3.0"
gemfile: Gemfile
env: # $BUNDLE_GEMFILE must be set at the job level, so it is set for all steps
BUNDLE_GEMFILE: ${{ github.workspace }}/${{ matrix.gemfile }}
steps:
- name: Checkout repository
uses: actions/checkout@v3
- name: Set up Ruby
uses: ruby/setup-ruby@v1
with:
ruby-version: ${{ matrix.ruby }}
bundler-cache: true
- name: Prepare test database
run: "cd spec/dummy && bundle exec rake db:test:prepare && cd -"
- name: Run tests
run: bundle exec rspec
# JavaScript unit tests
jest:
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v3
- name: Set up NodeJS
uses: actions/setup-node@v3
with:
node-version: lts/*
cache: 'yarn'
- name: Install dependencies
run: yarn install
- name: Run tests
run: yarn run test