Skip to content

Commit e253af4

Browse files
authored
Merge pull request #183 from keyasuda/fix/tests
CI復旧
2 parents 916ac34 + 3310710 commit e253af4

File tree

2 files changed

+7
-7
lines changed

2 files changed

+7
-7
lines changed

.github/workflows/gem.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ jobs:
2020
ruby-version: 3.2.0
2121
bundler-cache: true
2222
- name: preparation
23-
run: (cd gem && bundle update)
23+
run: (cd gem && bundle)
2424
- name: test
2525
run: (cd gem && bundle exec rspec)
2626

@@ -51,6 +51,6 @@ jobs:
5151
ruby-version: 3.2.0
5252
bundler-cache: true
5353
- name: preparation
54-
run: (cd gem && bundle update)
54+
run: (cd gem && bundle)
5555
- name: test
5656
run: (cd gem && bundle exec rspec --tag rake)

.github/workflows/test-app-integration.yml

+5-5
Original file line numberDiff line numberDiff line change
@@ -38,8 +38,8 @@ jobs:
3838
run: |
3939
cd test-app
4040
npm update
41-
bundle update
42-
(cd src && bundle update)
41+
bundle
42+
(cd src && bundle)
4343
bundle exec rake
4444
4545
- name: test
@@ -55,7 +55,7 @@ jobs:
5555
rm -rf test-app/node_modules
5656
5757
- name: Upload built artifact
58-
uses: actions/upload-artifact@v3.1.0
58+
uses: actions/upload-artifact@v4
5959
if: failure()
6060
with:
6161
name: built
@@ -77,8 +77,8 @@ jobs:
7777
- name: setup test-app
7878
run: |
7979
cd test-app
80-
bundle update
81-
(cd src && bundle update)
80+
bundle
81+
(cd src && bundle)
8282
8383
- name: test
8484
run: |

0 commit comments

Comments
 (0)