Skip to content

Commit f0125bb

Browse files
switch to typescript
1 parent 46e9cd9 commit f0125bb

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

.github/workflows/integration.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ jobs:
3030
run: npx yalc publish
3131

3232
- name: Create Integration Project
33-
run: npx create-react-app integration
33+
run: npx create-react-app integration --template typescript
3434

3535
- name: Use Package In Integration Project
3636
run: |
@@ -41,7 +41,7 @@ jobs:
4141
4242
- name: Override App.jsx
4343
run: |
44-
cat <<EOF > integration/src/App.js
44+
cat <<EOF > integration/src/App.tsx
4545
4646
import { FetchLoading } from 'fetch-loading'
4747
@@ -62,4 +62,4 @@ jobs:
6262
cd integration
6363
npm start &
6464
sleep 60
65-
curl -fs http://localhost:3000 || exit 1
65+
curl http://localhost:3000 || exit 1

0 commit comments

Comments
 (0)