Skip to content

Commit

Permalink
[stable-4.9] Disable sass mixed-decls warnings; fix CI (#5221) (#5224)
Browse files Browse the repository at this point in the history
* Disable sass mixed-decls warnings; fix CI (#5221)

* Force sass 1.77.6

sass 1.77.7+ adds a warning about mixing nested and unnested css
https://sass-lang.com/documentation/breaking-changes/mixed-decls/
most of these are in patternfly, so newer sass may need to wait for patternfly 6

* cypress.yml: provide docker-compose - call docker compose

(cherry picked from commit a4654e5)

* npm run prettier
  • Loading branch information
himdel authored Sep 16, 2024
1 parent d02d1c5 commit 9d85496
Show file tree
Hide file tree
Showing 4 changed files with 156 additions and 107 deletions.
8 changes: 8 additions & 0 deletions .github/workflows/cypress.yml
Original file line number Diff line number Diff line change
Expand Up @@ -88,6 +88,14 @@ jobs:
../ansible-hub-ui/test/cypress/e2e/"${{ matrix.test }}"/compose.env \
| sed 's/^\s\+//' | tee compose.env || [ -s compose.env ]
# oci-env compose build: FileNotFoundError: [Errno 2] No such file or directory: 'docker-compose'
- name: "Provide docker-compose"
run: |
mkdir -p /home/runner/.local/bin/
cd /home/runner/.local/bin/
( echo '#!/bin/sh' ; echo 'docker compose "$@"' ) > docker-compose
chmod +x docker-compose
- name: "oci-env compose build"
working-directory: 'oci_env'
run: 'oci-env compose build'
Expand Down
Loading

0 comments on commit 9d85496

Please sign in to comment.