Skip to content

Commit

Permalink
Configure CI
Browse files Browse the repository at this point in the history
  • Loading branch information
RobNicholsGDS committed Nov 20, 2024
1 parent 210b127 commit b19fe37
Show file tree
Hide file tree
Showing 6 changed files with 76 additions and 139 deletions.
55 changes: 0 additions & 55 deletions .github/workflows/ci.yml

This file was deleted.

67 changes: 67 additions & 0 deletions .github/workflows/rubyonrails.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,67 @@
# This workflow will install a prebuilt Ruby version, install dependencies, and
# run tests and linters.
name: "Ruby on Rails CI"
on:
push:
branches: [ "main" ]
pull_request:
branches: [ "main" ]
jobs:
test:
runs-on: ubuntu-latest
services:
postgres:
image: postgres:11-alpine
ports:
- "5432:5432"
env:
POSTGRES_DB: rails_test
POSTGRES_USER: rails
POSTGRES_PASSWORD: password
env:
RAILS_ENV: test
DATABASE_URL: "postgres://rails:password@localhost:5432/rails_test"
steps:
- name: Checkout code
uses: actions/checkout@v3

# Cofigure JavaScript environment
- name: Set Node.js 18.x
uses: actions/setup-node@v3
with:
node-version: 20.x

- name: Run install
uses: borales/actions-yarn@v4
with:
cmd: install # will run `yarn install` command

# Configure Ruby and Rails environment
- name: Install Ruby and gems
uses: ruby/setup-ruby@v1 # v1.202.0
with:
bundler-cache: true

# Add or replace database setup steps here
- name: Set up database schema
run: bin/rails db:schema:load

- name: Build assets
run: bundle exec rails dartsass:build

# Add or replace test runners here
- name: Run tests
run: bin/rake

lint:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v3
- name: Install Ruby and gems
uses: ruby/setup-ruby@v1
with:
bundler-cache: true
# Add or replace any other lints here
- name: Lint Ruby files
run: bin/lint
7 changes: 5 additions & 2 deletions bin/dev
Original file line number Diff line number Diff line change
@@ -1,8 +1,11 @@
#!/usr/bin/env sh

if ! gem list foreman -i --silent; then
if gem list --no-installed --exact --silent foreman; then
echo "Installing foreman..."
gem install foreman
fi

exec foreman start -f Procfile.dev "$@"
# Default to port 3000 if not specified
export PORT="${PORT:-3000}"

exec foreman start -f Procfile.dev --env /dev/null "$@"
3 changes: 3 additions & 0 deletions bin/lint
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
#!/bin/sh

bundle exec rubocop
81 changes: 0 additions & 81 deletions package-lock.json

This file was deleted.

2 changes: 1 addition & 1 deletion spec/requests/home_spec.rb
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
RSpec.describe "Homes", type: :request do
describe "GET /index" do
it "returns http success" do
get "/home/index"
get root_path
expect(response).to have_http_status(:success)
end
end
Expand Down

0 comments on commit b19fe37

Please sign in to comment.