Skip to content

Commit

Permalink
used secret url endpoint
Browse files Browse the repository at this point in the history
  • Loading branch information
ANKUR DWIVEDI authored and ANKUR DWIVEDI committed Nov 23, 2023
1 parent 4a3b2b2 commit ef041aa
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/nodejs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -64,13 +64,13 @@ jobs:
- name: Build Test app
run: |
cd tests/test-app
echo VUE_APP_URL_ENDPOINT = ${{ secrets.ik_url_endpoint }} > .env;
echo VUE_APP_PUBLIC_KEY = ${{ secrets.ik_public_key }} >> .env;
echo VUE_APP_AUTHENTICATION_ENDPOINT = 'http://localhost:3001/auth' >> .env;
echo VUE_APP_URL_ENDPOINT = ${{ secrets.ik_url_endpoint }} >> $GITHUB_ENV;
echo VUE_APP_PUBLIC_KEY = ${{ secrets.ik_public_key }} >> $GITHUB_ENV;
echo VUE_APP_AUTHENTICATION_ENDPOINT = 'http://localhost:3001/auth' >> $GITHUB_ENV;
npm install
npm run build
cd server
echo VUE_APP_PRIVATE_KEY = ${{ secrets.ik_private_key }} > .env;
echo VUE_APP_PRIVATE_KEY = ${{ secrets.ik_private_key }} >> $GITHUB_ENV;
npm install
- name: Start the app for Cypress
Expand Down

0 comments on commit ef041aa

Please sign in to comment.