Skip to content

Commit

Permalink
chore: fix visual testing workflow
Browse files Browse the repository at this point in the history
Signed-off-by: Tiago Teixeira <[email protected]>
  • Loading branch information
Tiago Teixeira authored Jun 21, 2024
1 parent 228a11d commit 648090a
Showing 1 changed file with 9 additions and 0 deletions.
9 changes: 9 additions & 0 deletions .github/workflows/visual-testing.yml
Original file line number Diff line number Diff line change
Expand Up @@ -71,6 +71,15 @@ jobs:
- name: 'Untar files'
run: tar -xvf malty.tar

- run: |
if [ -e yarn.lock ]; then
yarn install
elif [ -e package-lock.json ]; then
npm ci
else
npm i
fi
- name: Run visual testing in desktop
if: matrix.containers == 1
# TODO: As soon as the ticket https://carlsberggbs.atlassian.net/browse/DEVOPS-3179 is finished we can remove the npx wait-on utility.
Expand Down

0 comments on commit 648090a

Please sign in to comment.