File tree 4 files changed +25
-16
lines changed
test/generators/suspenders
4 files changed +25
-16
lines changed Original file line number Diff line number Diff line change 8
8
pull_request :
9
9
10
10
jobs :
11
- build :
11
+ lint :
12
12
runs-on : ubuntu-latest
13
- name : Ruby ${{ matrix.ruby }}
14
- strategy :
15
- matrix :
16
- ruby :
17
- - ' 3.1.4'
18
- - ' 3.2.2'
19
13
20
14
steps :
21
15
- uses : actions/checkout@v4
22
16
- name : Set up Ruby
23
17
uses : ruby/setup-ruby@v1
24
18
with :
25
- ruby-version : ${{ matrix.ruby }}
26
19
bundler-cache : true
27
- - name : Run the default task
28
- run : bundle exec rake
20
+
21
+ - name : Lint
22
+ run : bin/rails standard
23
+
24
+ test :
25
+ runs-on : ubuntu-latest
26
+
27
+ steps :
28
+ - uses : actions/checkout@v4
29
+ - name : Set up Ruby
30
+ uses : ruby/setup-ruby@v1
31
+ with :
32
+ bundler-cache : true
33
+
34
+ - name : Run tests
35
+ run : bin/rails test
Original file line number Diff line number Diff line change 1
- 3.2.2
1
+ 3.3.0
Original file line number Diff line number Diff line change 126
126
net-smtp (0.4.0 )
127
127
net-protocol
128
128
nio4r (2.5.9 )
129
- nokogiri (1.15.4 -arm64-darwin )
129
+ nokogiri (1.16.3 -arm64-darwin )
130
130
racc (~> 1.4 )
131
- nokogiri (1.15.4 -x86_64-linux )
131
+ nokogiri (1.16.3 -x86_64-linux )
132
132
racc (~> 1.4 )
133
133
parallel (1.23.0 )
134
134
parser (3.2.2.4 )
203
203
rubocop-ast (>= 0.4.0 )
204
204
ruby-progressbar (1.13.0 )
205
205
ruby2_keywords (0.0.5 )
206
- sqlite3 (1.6.7 -arm64-darwin )
207
- sqlite3 (1.6.7 -x86_64-linux )
206
+ sqlite3 (1.7.3 -arm64-darwin )
207
+ sqlite3 (1.7.3 -x86_64-linux )
208
208
standard (1.31.2 )
209
209
language_server-protocol (~> 3.17.0.2 )
210
210
lint_roller (~> 1.0 )
230
230
zeitwerk (2.6.12 )
231
231
232
232
PLATFORMS
233
- ruby
233
+ arm64-darwin-23
234
+ x86_64-linux
234
235
235
236
DEPENDENCIES
236
237
mocha
Original file line number Diff line number Diff line change @@ -260,6 +260,7 @@ def restore_destination
260
260
remove_file_if_exists ".stylelintrc.json"
261
261
remove_file_if_exists ".eslintrc.json"
262
262
remove_file_if_exists ".prettierrc"
263
+ remove_file_if_exists ".prettierignore"
263
264
remove_file_if_exists "package.json"
264
265
remove_file_if_exists ".erb-lint.yml"
265
266
remove_file_if_exists "config/better_html.yml"
You can’t perform that action at this time.
0 commit comments