File tree Expand file tree Collapse file tree 3 files changed +19
-10
lines changed Expand file tree Collapse file tree 3 files changed +19
-10
lines changed Original file line number Diff line number Diff line change 52
52
- gemfile : gemfiles/rails_master.gemfile
53
53
ruby : 3.3
54
54
graphql_reject_numbers_followed_by_names : 1
55
- coverage : 1
56
55
redis : 1
57
56
- gemfile : gemfiles/rails_master.gemfile
58
57
ruby : 3.4
79
78
bundler-cache : true
80
79
- run : bundle exec rake compile
81
80
- run : bundle exec rake test
82
- - run : git fetch --no-tags --prune --unshallow origin +refs/heads/*:refs/remotes/origin/*
83
- if : ${{ !!matrix.coverage }}
84
- - run : bundle exec pronto run -f github_pr -c origin/${{ github.base_ref }}
85
- if : ${{ !!matrix.coverage }}
86
- env :
87
- PRONTO_PULL_REQUEST_ID : ${{ github.event.pull_request.number }}
88
- PRONTO_GITHUB_ACCESS_TOKEN : " ${{ github.token }}"
89
81
javascript_test :
90
82
runs-on : ubuntu-latest
91
83
steps :
Original file line number Diff line number Diff line change
1
+ name : Pronto
2
+ on :
3
+ - pull_request_target
4
+
5
+ jobs :
6
+ pronto :
7
+
8
+ runs-on : ubuntu-latest
9
+
10
+ steps :
11
+ - name : Checkout code
12
+ uses : actions/checkout@v2
13
+ - run : git fetch --no-tags --prune --unshallow origin +refs/heads/*:refs/remotes/origin/*
14
+ - name : Setup Ruby
15
+ uses : ruby/setup-ruby@v1
16
+ - name : Setup pronto
17
+ run : gem install undercover pronto pronto-rubocop pronto-undercover
18
+ - name : Run Pronto
19
+ run : PRONTO_PULL_REQUEST_ID="${{ github.event.pull_request.number }}" PRONTO_GITHUB_ACCESS_TOKEN="${{ github.token }}" pronto run -f github_pr -c origin/${{ github.base_ref }}
Original file line number Diff line number Diff line change @@ -44,8 +44,6 @@ Gem::Specification.new do |s|
44
44
s . add_development_dependency "simplecov"
45
45
s . add_development_dependency "simplecov-lcov"
46
46
s . add_development_dependency "undercover"
47
- s . add_development_dependency "pronto"
48
- s . add_development_dependency "pronto-undercover"
49
47
# website stuff
50
48
s . add_development_dependency "jekyll"
51
49
s . add_development_dependency "jekyll-sass-converter" , "~>2.2"
You can’t perform that action at this time.
0 commit comments