Skip to content

Commit

Permalink
Hotwire (#688)
Browse files Browse the repository at this point in the history
Refactoring all the things 
(dropped jQuery, custom CSS & HAML in favor of Tailwind, Hotwire, and ViewComponent)
  • Loading branch information
Bramjetten committed May 21, 2021
1 parent ee6566d commit 67999c8
Show file tree
Hide file tree
Showing 901 changed files with 216,697 additions and 9,893 deletions.
313 changes: 0 additions & 313 deletions .fontcustom-manifest.json

This file was deleted.

59 changes: 59 additions & 0 deletions .github/workflows/ruby.yml
@@ -0,0 +1,59 @@
name: Ruby

on:
push:
branches: [ master, hotwire ]
pull_request:
branches: [ master ]

jobs:
test:
runs-on: ubuntu-latest
strategy:
matrix:
ruby-version: ['2.7', '3.0']

services:
postgres:
image: postgres:latest
env:
POSTGRES_DB: postgres
POSTGRES_PASSWORD: postgres
POSTGRES_USER: postgres
ports:
- 5432:5432
options: >-
--health-cmd pg_isready
--health-interval 10s
--health-timeout 5s
--health-retries 5
steps:
- uses: actions/checkout@v2

- name: Set up Ruby
uses: ruby/setup-ruby@v1
with:
ruby-version: ${{matrix.ruby-version}}
bundler-cache: true

- name: Setup Code Climate test-reporter
run: |
curl -L https://codeclimate.com/downloads/test-reporter/test-reporter-latest-linux-amd64 > ./cc-test-reporter
chmod +x ./cc-test-reporter
./cc-test-reporter before-build
- name: Create DB
env:
RAILS_ENV: test
run: |
cp test/dummy/config/database.yml.ci test/dummy/config/database.yml
bin/rails db:setup
- name: Run tests
run: bin/rails test

- name: Publish Code Coverage
env:
GIT_BRANCH: ${GITHUB_REF/refs\/heads\//}
run: ./cc-test-reporter after-build -r ${{ secrets.CodeClimate }}
11 changes: 10 additions & 1 deletion .gitignore
Expand Up @@ -15,4 +15,13 @@ coverage/*
*.gemfile.lock
test/dummy/storage/*
.idea/*
.localeapp
.localeapp
/tmp/

/node_modules
/public/spina-packs
yarn-debug.log*
.yarn-integrity
/yarn-error.log

.nova

0 comments on commit 67999c8

Please sign in to comment.