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 46e9cd9 commit f0125bbCopy full SHA for f0125bb
.github/workflows/integration.yml
@@ -30,7 +30,7 @@ jobs:
30
run: npx yalc publish
31
32
- name: Create Integration Project
33
- run: npx create-react-app integration
+ run: npx create-react-app integration --template typescript
34
35
- name: Use Package In Integration Project
36
run: |
@@ -41,7 +41,7 @@ jobs:
41
42
- name: Override App.jsx
43
44
- cat <<EOF > integration/src/App.js
+ cat <<EOF > integration/src/App.tsx
45
46
import { FetchLoading } from 'fetch-loading'
47
@@ -62,4 +62,4 @@ jobs:
62
cd integration
63
npm start &
64
sleep 60
65
- curl -fs http://localhost:3000 || exit 1
+ curl http://localhost:3000 || exit 1
0 commit comments