Skip to content

update with project-syncing action #180

update with project-syncing action

update with project-syncing action #180

Workflow file for this run

name: CI
on:
pull_request:
push:
branches: [ main ]
jobs:
# All jobs are currently disabled. Uncomment a job below to enable it.
placeholder:
runs-on: ubuntu-latest
steps:
- run: 'echo "CI jobs disabled"'
# scan_ruby:
# runs-on: ubuntu-latest
# steps:
# - name: Checkout code
# uses: actions/checkout@v4
# - name: Set up Ruby
# uses: ruby/setup-ruby@v1
# with:
# ruby-version: .ruby-version
# bundler-cache: true
# - name: Scan for common Rails security vulnerabilities using static analysis
# run: bin/brakeman --no-pager
# scan_js:
# runs-on: ubuntu-latest
# steps:
# - name: Checkout code
# uses: actions/checkout@v4
# - name: Set up Ruby
# uses: ruby/setup-ruby@v1
# with:
# ruby-version: .ruby-version
# bundler-cache: true
# - name: Scan for security vulnerabilities in JavaScript dependencies
# run: bin/importmap audit
# lint:
# runs-on: ubuntu-latest
# steps:
# - name: Checkout code
# uses: actions/checkout@v4
# - name: Set up Ruby
# uses: ruby/setup-ruby@v1
# with:
# ruby-version: .ruby-version
# bundler-cache: true
# - name: Lint code for consistent style
# run: bin/rubocop -f github
# test:
# runs-on: ubuntu-latest
#
# services:
# postgres:
# image: postgres
# env:
# POSTGRES_USER: postgres
# POSTGRES_PASSWORD: postgres
# ports:
# - 5432:5432
# options: >-
# --health-cmd pg_isready
# --health-interval 10s
# --health-timeout 5s
# --health-retries 5
#
# env:
# RAILS_ENV: test
# DATABASE_URL: "postgres://postgres:postgres@localhost:5432/test_db?encoding=utf8&pool=5&timeout=5000"
#
# steps:
# - name: Checkout code
# uses: actions/checkout@v4
#
# - name: Set up Ruby
# uses: ruby/setup-ruby@v1
# with:
# ruby-version: .ruby-version
# bundler-cache: true
#
# - name: Set up database
# run: bin/rails db:create db:migrate
#
# - name: Run tests
# run: bundle exec rspec