Skip to content

fix margin on p.color-contrast-medium #759

fix margin on p.color-contrast-medium

fix margin on p.color-contrast-medium #759

Workflow file for this run

name: ci
on: [push, pull_request]
env:
CI: gha
POSTGRES_USER: postgres
POSTGRES_PASSWORD: postgres
POSTGRES_DB: postgres
RAILS_ENV: test
jobs:
test:
name: RUBY${{ matrix.ruby-versions }}
runs-on: ubuntu-22.04
strategy:
matrix:
ruby-versions: [ '3.2.2' ]
rubygems-version: [ '3.4.5' ]
psql-version: [ '15' ]
node-version: [ '20' ]
redis-version: [ '7' ]
services:
postgres:
image: postgres:${{ matrix.psql-version }}
env:
POSTGRES_USER: ${{ env.POSTGRES_USER }}
POSTGRES_PASSWORD: ${{ env.POSTGRES_PASSWORD }}
POSTGRES_DB: ${{ env.POSTGRES_DB }}
options: >-
--health-cmd pg_isready
--health-interval 10s
--health-timeout 5s
--health-retries 5
ports:
- 5432:5432
redis:
image: redis:${{ matrix.redis-version }}
ports: ['6379:6379']
options: --entrypoint redis-server
steps:
- name: Checkout Repository
uses: actions/checkout@v4
- name: Setup Node
uses: actions/setup-node@v4
with:
node-version: ${{ matrix.node-version }}
- name: Setup Ruby
uses: ruby/setup-ruby@v1
with:
ruby-version: ${{ matrix.ruby-versions }}
- name: Install RubyGems
run: gem update --system ${{ matrix.rubygems-version }}
- name: Cache Gems
uses: actions/cache@v4
with:
path: vendor/bundle
key: ${{ runner.os }}-gems-${{ hashFiles('**/Gemfile.lock') }}
restore-keys: |
${{ runner.os }}-gems-
- name: Cache Yarn
uses: actions/cache@v4
with:
path: ~/.cache/yarn
key: ${{ runner.os }}-yarn-${{ hashFiles('**/yarn.lock') }}
restore-keys: ${{ runner.os }}-yarn-
- name: Install PSQL client
run: |
sudo sh -c 'echo "deb http://apt.postgresql.org/pub/repos/apt $(lsb_release -cs)-pgdg main" > /etc/apt/sources.list.d/pgdg.list'
wget --quiet -O - https://www.postgresql.org/media/keys/ACCC4CF8.asc | sudo apt-key add -
sudo apt-get update
sudo apt-get -y --no-install-recommends install "postgresql-client-${{ matrix.psql-version }}"
- name: Install needed packages
run: |
sudo apt-get update
sudo apt-get install -y imagemagick libsodium-dev libpq-dev
- name: Build app
id: app-build
run: ruby bin/setup
- name: Test app
id: app-test
run: rails test
- name: Upload coverage artifact
id: upload-coverage-artifact
uses: actions/upload-artifact@v4
with:
name: coverage-report
path: /home/runner/work/catima/catima/coverage
coverage:
name: Coverage
runs-on: ubuntu-latest
needs: test
if: success()
continue-on-error: false
steps:
- name: Download artifact
uses: actions/download-artifact@v4
with:
name: coverage-report
path: coverage
- name: Check minimum coverage
uses: unil-lettres/simplecov-check@main
with:
minimum_coverage: ${{ vars.MINIMUM_COVERAGE || 75 }}
coverage_path: coverage/.last_run.json