Skip to content

Commit

Permalink
fixed working directory for verify yarn wait-on
Browse files Browse the repository at this point in the history
  • Loading branch information
aasimsyed committed May 18, 2024
1 parent 6904995 commit c73119c
Showing 1 changed file with 4 additions and 3 deletions.
7 changes: 4 additions & 3 deletions .github/workflows/pr_ci_playwright_e2e.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -15,11 +15,11 @@ jobs:
- name: Checkout
uses: actions/checkout@v4

- name: Ensure .env.dev file exists
- name: Check if .env.dev file exists
run: |
if [ ! -f .env.dev ]; then
echo "Creating .env.dev file"
echo "REACT_APP_API_URL=http://localhost:3000" > .env.dev
echo ".env.dev file does not exist. Exiting workflow."
exit 1
fi
- name: Clean up any existing containers
Expand Down Expand Up @@ -53,6 +53,7 @@ jobs:
run: sudo yarn install

- name: Verify wait-on installation
working-directory: ./frontend
run: |
yarn --version
yarn list wait-on
Expand Down

0 comments on commit c73119c

Please sign in to comment.