Skip to content

Commit 3cfed0e

Browse files
authored
Refactor workflows to enable requiring tests in PRs (#703)
# Description Refactor to enable successful status checks for tests
1 parent 2c633a4 commit 3cfed0e

File tree

3 files changed

+6
-6
lines changed

3 files changed

+6
-6
lines changed

.github/workflows/cli_tests.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -14,11 +14,11 @@ jobs:
1414
defaults:
1515
run:
1616
working-directory: ./packages/cli
17-
name: Build CLI
17+
name: CLI - Build
1818
runs-on: ubuntu-22.04
1919
steps:
2020
- name: Checkout repository
21-
uses: actions/checkout@v3
21+
uses: actions/checkout@v4
2222

2323
- name: Install pnpm
2424
uses: pnpm/action-setup@v3

.github/workflows/js_sdk_tests.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -17,11 +17,11 @@ jobs:
1717
defaults:
1818
run:
1919
working-directory: ./packages/js-sdk
20-
name: Build and test SDK
20+
name: JS SDK - Build and test
2121
runs-on: ubuntu-22.04
2222
steps:
2323
- name: Checkout repository
24-
uses: actions/checkout@v3
24+
uses: actions/checkout@v4
2525

2626
- name: Install pnpm
2727
uses: pnpm/action-setup@v3

.github/workflows/python_sdk_tests.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -17,11 +17,11 @@ jobs:
1717
defaults:
1818
run:
1919
working-directory: ./packages/python-sdk
20-
name: Build and test SDK
20+
name: Python SDK -Build and test
2121
runs-on: ubuntu-22.04
2222
steps:
2323
- name: Checkout repository
24-
uses: actions/checkout@v3
24+
uses: actions/checkout@v4
2525

2626
- name: Set up Python
2727
uses: actions/setup-python@v4

0 commit comments

Comments
 (0)