♻️ refactor: extract dwelling view to partial erb #111
Workflow file for this run
This file contains 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: 💎 Ruby on Rails App CI | |
on: | |
pull_request: | |
push: | |
branches: [ main ] | |
jobs: | |
scan_ruby: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout code | |
uses: actions/checkout@v4 | |
- name: Set up Ruby | |
uses: ruby/setup-ruby@v1 | |
with: | |
working-directory: heroesofddd_rails_application | |
ruby-version: .ruby-version | |
bundler-cache: true | |
- name: Scan for common Rails security vulnerabilities using static analysis | |
run: bin/brakeman --no-pager | |
working-directory: heroesofddd_rails_application | |
scan_js: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout code | |
uses: actions/checkout@v4 | |
- name: Set up Ruby | |
uses: ruby/setup-ruby@v1 | |
with: | |
working-directory: heroesofddd_rails_application | |
ruby-version: .ruby-version | |
bundler-cache: true | |
- name: Scan for security vulnerabilities in JavaScript dependencies | |
run: bin/importmap audit | |
working-directory: heroesofddd_rails_application | |
lint: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout code | |
uses: actions/checkout@v4 | |
- name: Set up Ruby | |
uses: ruby/setup-ruby@v1 | |
with: | |
working-directory: heroesofddd_rails_application | |
ruby-version: .ruby-version | |
bundler-cache: true | |
- name: Lint code for consistent style | |
run: bin/rubocop -f github | |
working-directory: heroesofddd_rails_application | |
test: | |
runs-on: ubuntu-latest | |
services: | |
postgres: | |
image: postgres | |
env: | |
POSTGRES_DB: heroes_of_ddd_development | |
POSTGRES_USER: heroes_of_ddd_db_user | |
POSTGRES_PASSWORD: heroes_of_ddd_db_password | |
ports: | |
- 5444:5432 | |
options: --health-cmd="pg_isready" --health-interval=10s --health-timeout=5s --health-retries=3 | |
# redis: | |
# image: redis | |
# ports: | |
# - 6379:6379 | |
# options: --health-cmd "redis-cli ping" --health-interval 10s --health-timeout 5s --health-retries 5 | |
steps: | |
- name: Install packages | |
run: sudo apt-get update && sudo apt-get install --no-install-recommends -y google-chrome-stable curl libjemalloc2 libvips postgresql-client | |
- name: Checkout code | |
uses: actions/checkout@v4 | |
- name: Set up Ruby | |
uses: ruby/setup-ruby@v1 | |
with: | |
working-directory: heroesofddd_rails_application | |
ruby-version: .ruby-version | |
bundler-cache: true | |
- name: Run tests | |
env: | |
RAILS_ENV: test | |
DATABASE_URL: postgres://heroes_of_ddd_db_user:heroes_of_ddd_db_password@localhost:5444/heroes_of_ddd_test | |
# REDIS_URL: redis://localhost:6379/0 | |
run: bin/rails db:test:prepare test test:system | |
working-directory: heroesofddd_rails_application | |
- name: Keep screenshots from failed system tests | |
uses: actions/upload-artifact@v4 | |
if: failure() | |
with: | |
name: screenshots | |
path: ${{ github.workspace }}/heroesofddd_rails_application/tmp/screenshots | |
if-no-files-found: ignore |