Skip to content

Commit

Permalink
separea local and staging test
Browse files Browse the repository at this point in the history
  • Loading branch information
v9n committed Nov 20, 2024
1 parent 457aeed commit 173a81b
Showing 1 changed file with 35 additions and 8 deletions.
43 changes: 35 additions & 8 deletions .github/workflows/run-test-on-pr.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ on:
branches: [ main ]

jobs:
test:
staging-test:
runs-on: ubuntu-latest
environment: test # The below environment variables are only available in the test environment

Expand All @@ -20,6 +20,39 @@ jobs:
- name: Checkout repository
uses: actions/checkout@v4

- name: Debug environment variables
run: |
echo "TOKEN_CONTRACT: $TOKEN_CONTRACT"
echo "ORACLE_CONTRACT: $ORACLE_CONTRACT"
echo "ENDPOINT: $ENDPOINT"
- name: Use Node.js
uses: actions/setup-node@v4
with:
node-version: '18.x'
cache: 'npm'

- name: Install dependencies
run: npm ci

- name: Run tests againts staging AVS
run: |
npm test
local-test:
runs-on: ubuntu-latest
environment: test # The below environment variables are only available in the test environment

env:
TEST_PRIVATE_KEY: ${{ secrets.TEST_PRIVATE_KEY }}
TOKEN_CONTRACT: ${{ vars.TOKEN_CONTRACT }}
ORACLE_CONTRACT: ${{ vars.ORACLE_CONTRACT }}
ENDPOINT: "localhost:2206"

steps:
- name: Checkout repository
uses: actions/checkout@v4

- name: Bring up docker compose
run: |
docker compose up -d
Expand All @@ -41,19 +74,13 @@ jobs:

- name: ensure the aggregator and env is ready
run: |
until curl --output /dev/null --silent --fail http://localhost:1323/telemetry; do
until curl --output /dev/null --silent --fail http://localhost:1323/up; do
printf '.'
sleep 5
done
- name: Run tests againts local AVS
run: |
curl localhost:1323/telemetry
export TEST_API_KEY="$(docker compose exec aggregator /ava create-api-key --role=admin --subject=apikey)"
export ENDPOINT="localhost:2206"
sleep 15
npm test
- name: Run tests againts staging AVS
run: |
npm test

0 comments on commit 173a81b

Please sign in to comment.