Skip to content

Commit

Permalink
fix script file name
Browse files Browse the repository at this point in the history
  • Loading branch information
MariferVL committed Sep 18, 2023
1 parent bbee9c8 commit af6d6f2
Showing 1 changed file with 11 additions and 4 deletions.
15 changes: 11 additions & 4 deletions .github/workflows/test-flowise-flow.yml
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,14 @@ jobs:
run: npm install

- name: main
run: npx flowise start &
wait-on tcp:3000 &&
OPENAI_API_KEY=${{ secrets.OPENAI_API_KEY }} npm run load &&
npm test
run: |
export PORT=$PORT
export OPENAI_API_KEY=$OPENAI_API_KEY
npx flowise start &
wait-on tcp:3000 &&
npm run load &&
npm test
env:
PORT: ${{ secrets.PORT }}
OPENAI_API_KEY: ${{ secrets.OPENAI_API_KEY }}

0 comments on commit af6d6f2

Please sign in to comment.