Skip to content

Commit 2de1cd5

Browse files
authored
Feature/remove shared UI (#589)
1 parent 6e581b1 commit 2de1cd5

File tree

260 files changed

+6399
-2047
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

260 files changed

+6399
-2047
lines changed

.github/workflows/deploy-playgrounds.yml

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -20,6 +20,8 @@ jobs:
2020

2121
- name: Set up Node.js
2222
uses: actions/setup-node@v4
23+
with:
24+
node-version: 24
2325

2426
- name: Cache node modules
2527
id: cache-npm
@@ -41,7 +43,7 @@ jobs:
4143
run: |
4244
npm i
4345
npm install lerna
44-
npm install vercel@33.2.0
46+
npm install vercel@50.26.1
4547
npm list
4648
4749
- name: Check ESLint Errors
@@ -63,7 +65,7 @@ jobs:
6365
- name: Deploy react playground to Vercel
6466
run: |
6567
npx vercel link --yes --project react-playground --scope corbado -t $VERCEL_TOKEN
66-
npx vercel pull -t $VERCEL_TOKEN
68+
npx vercel pull --environment=preview -t $VERCEL_TOKEN
6769
npx vercel build -t $VERCEL_TOKEN
6870
url="$(npx vercel deploy --prebuilt -t ${{ secrets.VERCEL_TOKEN }})"
6971
npx vercel alias -S corbado -t ${{ secrets.VERCEL_TOKEN }} "$url" $BRANCH_NAME.react.playground.corbado.io

.github/workflows/test-all.yml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,6 +19,8 @@ jobs:
1919

2020
- name: Set up Node.js
2121
uses: actions/setup-node@v4
22+
with:
23+
node-version: 24
2224

2325
- name: Cache node modules
2426
id: cache-npm
@@ -40,7 +42,6 @@ jobs:
4042
run: |
4143
npm i
4244
npm install lerna
43-
npm install vercel@33.2.0
4445
npm list
4546
4647
- name: Build SDKs

.github/workflows/test.yml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -54,6 +54,8 @@ jobs:
5454

5555
- name: Set up Node.js
5656
uses: actions/setup-node@v4
57+
with:
58+
node-version: 24
5759

5860
- name: Cache node modules
5961
id: cache-npm
@@ -75,7 +77,6 @@ jobs:
7577
run: |
7678
npm i
7779
npm install lerna
78-
npm install vercel@33.2.0
7980
npm list
8081
8182
- name: Build SDKs

.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -30,3 +30,4 @@ packages/tests-e2e/.env.connect.local
3030

3131
# scripts
3232
scripts/*.sh
33+
.env*.local

.prettierignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,7 @@ dist
66
.yalc
77
.github
88
.vercel
9+
.next
910

1011
docs
1112

0 commit comments

Comments
 (0)