Skip to content

Add Docker and Docker Compose configuration. #550

Add Docker and Docker Compose configuration.

Add Docker and Docker Compose configuration. #550

Workflow file for this run

---

Check failure on line 1 in .github/workflows/ci.yml

View workflow run for this annotation

GitHub Actions / .github/workflows/ci.yml

Invalid workflow file

You have an error in your yaml syntax on line 1
name: CI
jobs:
Ruby:
runs-on: ubuntu-latest
services:
postgres:
image: postgres:16-alpine
ports: ["5432:5432"]
options: >-
--health-cmd pg_isready
--health-interval 10s
--health-retries 10
--health-timeout 1s
env:
POSTGRES_USER: postgres
POSTGRES_PASSWORD: postgres
redis:
image: redis:7-alpine
ports: ["6379:6379"]
options: >-
--health-cmd "redis-cli ping"
--health-interval 10ms
--health-retries 10
--health-timeout 1s
steps:
- name: Checkout the code
uses: actions/checkout@v4
- name: Install Ruby
uses: ruby/setup-ruby@v1
with:
bundler-cache: true
- name: Install Node
uses: actions/setup-node@v4
with:
cache: "yarn"
- name: Install the Node dependencies
run: yarn install
- name: Run the Ruby tests
env:
COVERAGE: true
DATABASE_POOL: 10
POSTGRES_USER: postgres
POSTGRES_PASSWORD: postgres
RAILS_ENV: test
run: bundle exec rails db:setup ruby:test
JavaScript:
runs-on: ubuntu-latest
steps:
- name: Checkout the code
uses: actions/checkout@v4
- name: Install Node
uses: actions/setup-node@v4
with:
cache: "yarn"
- name: Install the Node dependencies
run: yarn install
- name: Run the JavaScript tests
run: yarn test:coverage
Linting:
runs-on: ubuntu-latest
steps:
- name: Checkout the code
uses: actions/checkout@v4
- name: Install Ruby
uses: ruby/setup-ruby@v1
with:
bundler-cache: true
- name: Install Node
uses: actions/setup-node@v4
with:
cache: "yarn"
- name: Install the Node dependencies
run: yarn install
- name: Lint the ERB
run: bundle exec erblint .
- name: Lint the Ruby
run: bundle exec rubocop --parallel
- name: Lint the JavaScript
run: yarn lint
- name: Lint the CSS
run: yarn lint:css
Docker:
runs-on: ubuntu-latest
steps:
- name: Set up QEMU
uses: docker/setup-qemu-action@v3
- name: Set up Docker
uses: docker/setup-buildx-action@v3
- name: Build
uses: docker/build-push-action@v6
with:
cache-from: type=gha
cache-to: type=gha,mode=max
push: false
Vulnerabilities:
runs-on: ubuntu-latest
steps:
- name: Checkout the code
uses: actions/checkout@v4
- name: Install Ruby
uses: ruby/setup-ruby@v1
with:
bundler-cache: true
- name: Scan for vulnerabilities
run: bundle exec brakeman --format github --no-pager