-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
1 changed file
with
39 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,39 @@ | ||
name: Unified Test Suite | ||
|
||
on: | ||
pull_request: | ||
push: | ||
branches: | ||
- main | ||
|
||
jobs: | ||
unified-test-suite: | ||
runs-on: macos-15 | ||
steps: | ||
- name: Checkout code | ||
uses: actions/checkout@v4 | ||
|
||
- name: Set up Node.js 20 | ||
uses: actions/setup-node@v4 | ||
with: | ||
node-version: 20 | ||
|
||
- run: npm ci | ||
|
||
- name: Install uts-chat globally | ||
run: npm install -g @ably-labs/uts-chat | ||
|
||
# This step can be removed once the runners' default version of Xcode is 16 or above | ||
- name: Setup Xcode | ||
uses: maxim-lobanov/setup-xcode@v1 | ||
with: | ||
xcode-version: 16 | ||
|
||
- name: Prepare Adapter | ||
working-directory: UTSChatAdapter | ||
run: swift build --target Adapter | ||
|
||
- name: Run uts-chat with ADAPTER_EXECUTABLE | ||
env: | ||
ADAPTER_EXECUTABLE: cd UTSChatAdapter && swift run UTSChatAdapter | ||
run: uts-chat |