Skip to content

Commit

Permalink
CI on GitHub Actions
Browse files Browse the repository at this point in the history
  • Loading branch information
amatsuda committed Nov 14, 2024
1 parent 8920acd commit addc9b5
Showing 1 changed file with 45 additions and 0 deletions.
45 changes: 45 additions & 0 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,45 @@
name: Test

on:
push:
pull_request:

jobs:
test:
runs-on: ubuntu-latest

services:
postgres:
image: postgres
env:
POSTGRES_HOST_AUTH_METHOD: trust
ports:
- 5432:5432
options: --health-cmd="pg_isready" --health-interval=10s --health-timeout=5s --health-retries=3

steps:
- run: sudo apt-get update && sudo apt-get install --no-install-recommends -y google-chrome-stable curl libvips postgresql-client libpq-dev

- uses: actions/checkout@v4

- uses: ruby/setup-ruby@v1
with:
bundler-cache: true

- uses: actions/setup-node@v4
with:
node-version: '15.14.0'

- name: Run tests
env:
RAILS_ENV: test
DATABASE_URL: postgres://postgres@localhost:5432/cfp_app_test
run: bin/rails db:setup assets:precompile spec

- name: Keep screenshots from failed system tests
uses: actions/upload-artifact@v4
if: failure()
with:
name: screenshots
path: ${{ github.workspace }}/tmp/capybara
if-no-files-found: ignore

0 comments on commit addc9b5

Please sign in to comment.