Skip to content

Commit 45abc3e

Browse files
check package.json and node_modules for fetch-loading
1 parent d4fb972 commit 45abc3e

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

.github/workflows/integration.yml

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,14 +37,16 @@ jobs:
3737
cd integration
3838
npx yalc add fetch-loading
3939
npm i
40+
cat package.json | grep fetch-loading
41+
ls node_modules | grep fetch-loading
4042
4143
- name: Override App.jsx
4244
run: |
4345
cat <<EOF > integration/src/App.jsx
4446
import { FetchLoading } from 'fetch-loading'
4547
4648
const App = () => {
47-
return <div>Hello World!</div>
49+
return <FetchLoading />
4850
}
4951
5052
export default App

0 commit comments

Comments
 (0)