Skip to content

Commit d3cdc12

Browse files
committed
Merge branch 'develop' into feat/mint-NFT-with-collection-address
2 parents 8c49ef8 + 910b67b commit d3cdc12

File tree

3 files changed

+20
-13
lines changed

3 files changed

+20
-13
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

docs/docs/quickstart.md

+9-3
Original file line numberDiff line numberDiff line change
@@ -213,9 +213,15 @@ pnpm start --characters="characters/trump.character.json,characters/tate.charact
213213

214214
1. **Node.js Version**
215215

216-
- Ensure Node.js 23.3.0 is installed
217-
- Use `node -v` to check version
218-
- Consider using [nvm](https://github.com/nvm-sh/nvm) to manage Node versions
216+
- Ensure Node.js 23.3.0 is installed
217+
- Use `node -v` to check version
218+
- Consider using [nvm](https://github.com/nvm-sh/nvm) to manage Node versions
219+
220+
NOTE: pnpm may be bundled with a different node version, ignoring nvm. If this is the case, you can use
221+
```bash
222+
pnpm env use --global 23.3.0
223+
```
224+
to force it to use the correct one.
219225

220226
2. **Sharp Installation**
221227
If you see Sharp-related errors:

0 commit comments

Comments
 (0)