We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e478a40 commit b85d70aCopy full SHA for b85d70a
.github/workflows/integration.yml
@@ -41,7 +41,7 @@ jobs:
41
42
- name: Override App.jsx
43
run: |
44
- cat <<EOF > integration/src/App.jsx
+ cat <<EOF > integration/src/App.js
45
import { FetchLoading } from 'fetch-loading'
46
47
const App = () => {
@@ -51,16 +51,9 @@ jobs:
51
export default App
52
EOF
53
54
- - name: Install xmllint
55
- run: sudo apt-get update && sudo apt-get install -y libxml2-utils
56
-
57
- name: Start React App
58
59
cd integration
60
npm start &
61
sleep 60
62
- curl -fsS http://localhost:3000 -o output.html
63
- xmllint --html --xpath "//*[contains(@style, 'display: flex')]" output.html || exit 1
64
65
- - name: Debug Output
66
- run: cat output.html
+ curl -fs http://localhost:3000 || exit 1
0 commit comments