Skip to content

Merge branch 'main' into dependabot/bundler/rubocop-1.57.1 #296

Merge branch 'main' into dependabot/bundler/rubocop-1.57.1

Merge branch 'main' into dependabot/bundler/rubocop-1.57.1 #296

Workflow file for this run

# This workflow uses actions that are not certified by GitHub.
# They are provided by a third-party and are governed by
# separate terms of service, privacy policy, and support documentation.
# This workflow will download a prebuilt Ruby version, install dependencies and run tests with Rake
# For more information see: https://github.com/marketplace/actions/setup-ruby-jruby-and-truffleruby
name: Ruby CI
on: [push, pull_request]
permissions:
contents: read
jobs:
test:
strategy:
matrix:
os:
- macOS-latest
- ubuntu-latest
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v3
- name: Set up Ruby
uses: ruby/setup-ruby@v1
with:
ruby-version: ${{ matrix.ruby }}
bundler-cache: true
- name: Run tests
run: bundle exec rspec
- name: Run security checks - brakeman
run: bundle exec brakeman
- name: Run security checks - rubocop
run: bundle exec rubocop --parallel -A
- name: Run security checks - bundler-audit
run: bundle exec bundler-audit --update
- name: Setup ruby dependencies
uses: ruby/setup-ruby-pkgs@v1
with:
ruby-version: ${{ matrix.ruby }}
bundler-cache: true
rubygems: 3.4.1
- name: Setup yarn dependencies | Configure yarn
run: |
yarn install --check-files
yarn test
yarn audit
yarn install
yarn install -p