Skip to content

Remove test case using js: true #424

Remove test case using js: true

Remove test case using js: true #424

Workflow file for this run

name: Points
on:
push:
branches:
- main
pull_request:
branches:
- main
jobs:
build-rails-current:
runs-on: ubuntu-latest
env:
DATABASE_URL: "postgres://postgres:postgres@localhost/points-test"
services:
postgres:
image: postgres:11.6-alpine
ports:
- 5432:5432
env:
POSTGRES_USER: postgres
POSTGRES_PASSWORD: postgres
# needed because the postgres container does not provide a healthcheck
options: --health-cmd pg_isready --health-interval 10s --health-timeout 5s --health-retries 5
steps:
- name: Checkout Code
uses: actions/checkout@v1
- name: Install PostgreSQL 11 client
run: |
sudo apt-get -yqq install libpq-dev
- name: Setup Ruby
uses: ruby/setup-ruby@v1
with:
ruby-version: "3.2.2"
bundler-cache: true
- name: Build App
run: |
bundle exec rails db:setup
- name: Run RSpec
run: |
bundle exec rspec
- uses: actions/upload-artifact@v2
if: failure()
with:
name: Screenshots and logs
path: |
tmp/capybara
log