Skip to content

Commit

Permalink
ci/cd: fix functional tests
Browse files Browse the repository at this point in the history
  • Loading branch information
Mohamed-Hacene committed May 16, 2024
1 parent bc44ac9 commit 4d350b9
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion .github/workflows/functional-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,9 @@ jobs:
if [ -f requirements.txt ]; then pip install -r requirements.txt; fi
- name: Install dependencies
working-directory: ${{ env.working-directory }}
run: npm ci
run: |
npm install
npm ci
- name: Install Playwright Browsers
working-directory: ${{ env.working-directory }}
run: npx playwright install --with-deps
Expand Down

0 comments on commit 4d350b9

Please sign in to comment.