Skip to content

Commit

Permalink
Update GitHub workflow with new environment variables
Browse files Browse the repository at this point in the history
Six new environment variables: TEST_BASEURL, TEST_WINERYID, TEST_CASEGOODSNAMES, TEST_BOTTLEQUANTITIES, TEST_COMPLIANCE, and TEST_EFFECTIVEAT were appended to the .env file written in .github/workflows/test.yml. This update expands the configuration settings for the application testing environment.
  • Loading branch information
danshome committed Mar 23, 2024
1 parent 9d4e2da commit 2855025
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -25,6 +25,12 @@ jobs:
run: |
touch .env
echo TEST_API_KEY=${{ secrets.TEST_API_KEY }} >> .env
echo TEST_BASEURL=https://sutter.innovint.us >> .env
echo TEST_WINERYID=${{ secrets.TEST_WINERYID }} >> .env
echo TEST_CASEGOODSNAMES=CG-1500RCVMER,CG-1501RCVMTR,CG-1502MDVSAN,CG-1600RCVROSE >> .env
echo TEST_BOTTLEQUANTITIES=1,1,1,2 >> .env
echo TEST_COMPLIANCE=REMOVED_TAXPAID >> .env
echo TEST_EFFECTIVEAT=$(date --utc +%Y-%m-%dT%H:%M:%S%z) >> .env
- name: Use Node.js
uses: actions/setup-node@v3
with:
Expand Down

0 comments on commit 2855025

Please sign in to comment.