File tree 2 files changed +7
-7
lines changed
2 files changed +7
-7
lines changed Original file line number Diff line number Diff line change 20
20
ruby-version : 3.2.0
21
21
bundler-cache : true
22
22
- name : preparation
23
- run : (cd gem && bundle update )
23
+ run : (cd gem && bundle)
24
24
- name : test
25
25
run : (cd gem && bundle exec rspec)
26
26
51
51
ruby-version : 3.2.0
52
52
bundler-cache : true
53
53
- name : preparation
54
- run : (cd gem && bundle update )
54
+ run : (cd gem && bundle)
55
55
- name : test
56
56
run : (cd gem && bundle exec rspec --tag rake)
Original file line number Diff line number Diff line change 38
38
run : |
39
39
cd test-app
40
40
npm update
41
- bundle update
42
- (cd src && bundle update )
41
+ bundle
42
+ (cd src && bundle)
43
43
bundle exec rake
44
44
45
45
- name : test
55
55
rm -rf test-app/node_modules
56
56
57
57
- name : Upload built artifact
58
- uses : actions/upload-artifact@v3.1.0
58
+ uses : actions/upload-artifact@v4
59
59
if : failure()
60
60
with :
61
61
name : built
77
77
- name : setup test-app
78
78
run : |
79
79
cd test-app
80
- bundle update
81
- (cd src && bundle update )
80
+ bundle
81
+ (cd src && bundle)
82
82
83
83
- name : test
84
84
run : |
You can’t perform that action at this time.
0 commit comments