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 119a69e
Show file tree
Hide file tree
Showing 3 changed files with 70 additions and 55 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 16.x
uses: actions/setup-node@v3
with:
node-version: 16.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
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

0 comments on commit 119a69e

Please sign in to comment.