There was an error while loading. Please reload this page.
1 parent 333a3fe commit 79e46f1Copy full SHA for 79e46f1
1 file changed
.github/workflows/integration.yml
@@ -63,9 +63,26 @@ jobs:
63
- name: Build SDK
64
run: npm run build
65
66
+ - name: Pack SDK
67
+ run: npm pack
68
+
69
- name: Install examples
70
run: npm run install:examples
71
72
+ - name: Install local SDK into CRA example
73
+ run: npm install --prefix=examples/cra-react-router $(ls auth0-auth0-react-*.tgz) --legacy-peer-deps
74
75
+ - name: Build CRA example (production)
76
+ run: npm run build --prefix=examples/cra-react-router
77
+ env:
78
+ CI: false
79
80
+ - name: Build Next.js example (production)
81
+ run: npm run build --prefix=examples/nextjs-app
82
83
+ - name: Build Gatsby example (production)
84
+ run: npm run build --prefix=examples/gatsby-app
85
86
- name: Run integration test (CRA)
87
run: npm run test:cra
88
0 commit comments