Add config for **ngrok** #275
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Pronto | |
on: [pull_request] | |
jobs: | |
pronto: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout code | |
uses: actions/checkout@v4 | |
with: | |
fetch-depth: 100 | |
- run: | | |
git fetch --no-tags --prune origin +refs/heads/*:refs/remotes/origin/* | |
- name: Setup Ruby | |
uses: ruby/setup-ruby@v1 | |
- name: Setup pronto | |
run: gem install pronto pronto-rubocop rubocop-rspec rubocop-rails rubocop-factory_bot | |
- name: Run Pronto | |
run: pronto run -f github_status github_pr -c origin/${{ github.base_ref }} | |
env: | |
PRONTO_PULL_REQUEST_ID: ${{ github.event.pull_request.number }} | |
PRONTO_GITHUB_ACCESS_TOKEN: "${{ github.token }}" |