Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
24 changes: 24 additions & 0 deletions .github/workflows/reviews.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
name: Code review
on:
- push
jobs:
run:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
with:
submodules: 'true'
fetch-depth: 0
- run: |
git fetch --no-tags --prune origin
- uses: borales/actions-yarn@v2.0.0
with:
cmd: install
- uses: adwerx/pronto-ruby@v2.5
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
RUBOCOP_CONFIG: ./pronto/rubocop/rubocop.yml
YAMLLINT_OPTS: -c ./pronto/yamllint/yamllint.yml
with:
runners: >-
brakeman eslint_npm fasterer poper rails_best_practices rails_schema reek rubocop scss yamllint
6 changes: 6 additions & 0 deletions .gitmodules
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
[submodule "pronto/rubocop"]
path = pronto/rubocop
url = git@github.com:rubyroidlabs/rubocop.git
[submodule "pronto/yamllint"]
path = pronto/yamllint
url = git@github.com:rubyroidlabs/yamllint.git
4 changes: 0 additions & 4 deletions .hound.yml

This file was deleted.

1 change: 1 addition & 0 deletions pronto/rubocop
Submodule rubocop added at 23a55b
1 change: 1 addition & 0 deletions pronto/yamllint
Submodule yamllint added at 9751e3
10 changes: 0 additions & 10 deletions rubocop/disabled.yml

This file was deleted.

Loading