Skip to content

Commit 32d1e6c

Browse files
committed
nvm
1 parent 403e0d8 commit 32d1e6c

File tree

2 files changed

+32
-26
lines changed

2 files changed

+32
-26
lines changed

.github/actions/smoke-test/action.yml

Lines changed: 0 additions & 21 deletions
This file was deleted.

.github/workflows/test-smoke.yml

Lines changed: 32 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,6 @@ on:
99
paths:
1010
- "spec/smoke/*"
1111
- ".github/workflows/test-smoke.yml"
12-
- ".github/actions/smoke-test/*"
1312

1413
concurrency:
1514
group: ${{ github.workflow }}-${{ github.head_ref }}
@@ -37,8 +36,22 @@ jobs:
3736
BW_VOICE_APPLICATION_ID: ${{ secrets.BW_VOICE_APPLICATION_ID }}
3837
BW_MESSAGING_APPLICATION_ID: ${{ secrets.BW_MESSAGING_APPLICATION_ID }}
3938
steps:
40-
- name: Smoke Test
41-
uses: ./.github/actions/smoke-test
39+
- name: Checkout
40+
uses: actions/checkout@v4
41+
42+
- name: Set up Ruby
43+
uses: ruby/setup-ruby@v1
44+
with:
45+
ruby-version: 3.3
46+
47+
- name: Install Packages and Test
48+
run: |
49+
bundle install
50+
rake smoke
51+
env:
52+
RUBY_VERSION: 3.3
53+
OPERATING_SYSTEM: ubuntu
54+
shell: bash
4255

4356
test_main_up:
4457
name: Smoke Test UP Account
@@ -49,8 +62,22 @@ jobs:
4962
BW_VOICE_APPLICATION_ID: ${{ secrets.BW_UP_VOICE_APPLICATION_ID }}
5063
BW_MESSAGING_APPLICATION_ID: ${{ secrets.BW_UP_MESSAGING_APPLICATION_ID }}
5164
steps:
52-
- name: Smoke Test
53-
uses: ./.github/actions/smoke-test
65+
- name: Checkout
66+
uses: actions/checkout@v4
67+
68+
- name: Set up Ruby
69+
uses: ruby/setup-ruby@v1
70+
with:
71+
ruby-version: 3.3
72+
73+
- name: Install Packages and Test
74+
run: |
75+
bundle install
76+
rake smoke
77+
env:
78+
RUBY_VERSION: 3.3
79+
OPERATING_SYSTEM: ubuntu
80+
shell: bash
5481

5582
notify_for_failures:
5683
name: Notify for Failures

0 commit comments

Comments
 (0)