From 7b1d226403eee8a7b5aa7e5227f7ff56d024527a Mon Sep 17 00:00:00 2001 From: Dave Horton Date: Fri, 13 Oct 2023 12:09:11 -0400 Subject: [PATCH] test proxy using azure --- .github/workflows/ci.yml | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 2f708c9..8acdaf2 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -14,6 +14,9 @@ jobs: node-version: lts/* - run: npm install - run: npm run jslint + - run: sudo apt update && sudo apt install -y squid + - run: sudo cp test/squid.conf /etc/squid/squid.conf + - run: sudo systemctl start squid - run: npm test env: AWS_ACCESS_KEY_ID: ${{ secrets.AWS_ACCESS_KEY_ID }} @@ -29,3 +32,5 @@ jobs: ELEVENLABS_API_KEY: ${{ secrets.ELEVENLABS_API_KEY }} ELEVENLABS_VOICE_ID: ${{ secrets.ELEVENLABS_VOICE_ID }} ELEVENLABS_MODEL_ID: ${{ secrets.ELEVENLABS_MODEL_ID }} + JAMBONES_HTTP_PROXY_IP: 127.0.0.1 + JAMBONES_HTTP_PROXY_PORT: 3128