Skip to content

Commit 7f1bdbd

Browse files
authored
Merge branch 'develop' into add-note-on-pnpm-node-version
2 parents 4106f54 + d4a53b6 commit 7f1bdbd

File tree

2 files changed

+11
-10
lines changed

2 files changed

+11
-10
lines changed

.github/workflows/integrationTests.yaml

+6-10
Original file line numberDiff line numberDiff line change
@@ -49,17 +49,13 @@ jobs:
4949
id: check_api_key
5050
run: |
5151
if [ -z "$OPENAI_API_KEY" ]; then
52-
echo "::set-output name=api_key_present::false"
53-
else
54-
echo "::set-output name=api_key_present::true"
52+
echo "Error: OPENAI_API_KEY is not set."
53+
exit 1
5554
fi
55+
env:
56+
OPENAI_API_KEY: ${{ secrets.OPENAI_API_KEY }}
5657

5758
- name: Run integration tests
58-
if: steps.check_api_key.outputs.api_key_present == 'true'
5959
run: pnpm run integrationTests
60-
61-
- name: Skip integration tests
62-
if: steps.check_api_key.outputs.api_key_present == 'false'
63-
run: |
64-
echo "Skipping integration tests due to missing required API keys"
65-
exit 1
60+
env:
61+
OPENAI_API_KEY: ${{ secrets.OPENAI_API_KEY }}

README.md

+5
Original file line numberDiff line numberDiff line change
@@ -55,6 +55,11 @@ cd eliza-starter
5555
cp .env.example .env
5656
pnpm i && pnpm build && pnpm start
5757
```
58+
Once the agent is running, You should see the message to run "pnpm start:client" at the end.
59+
Open another terminal and move to same directory and then run below command and follow the URL to chat to your agent.
60+
```bash
61+
pnpm start:client
62+
```
5863

5964
Then read the [Documentation](https://elizaos.github.io/eliza/) to learn how to customize your Eliza.
6065

0 commit comments

Comments
 (0)