Skip to content

Commit b29910b

Browse files
authored
Merge branch 'main' into fix/issue-1-wallet-state-navigation
2 parents 2132ebf + 17193f2 commit b29910b

61 files changed

Lines changed: 3554 additions & 1539 deletions

Some content is hidden

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

.env.example

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,8 +4,13 @@ NEXT_PUBLIC_ROLE_REGISTRY_ACCOUNT=
44
NEXT_PUBLIC_CHAIN_EVENTS_WS_URL=
55
NEXT_PUBLIC_CHAIN_SYNC_POLL_MS=1000
66
NEXT_PUBLIC_CONTRACT_ID=
7+
NEXT_PUBLIC_PROFILE_SERVICE_URL=
8+
NEXT_PUBLIC_RELAYER_PUBLIC_KEY=
9+
NEXT_PUBLIC_VAPID_PUBLIC_KEY=
710
STELLAR_NETWORK=testnet
11+
GITHUB_TOKEN=
812
RELAYER_VAULT_KEY_PROVIDER=hardware
913
RELAYER_VAULT_HARDWARE_BACKED=true
1014
RELAYER_VAULT_STELLAR_SECRET_KEY=
15+
GITHUB_WEBHOOK_SECRET=
1116
FEEDBACK_WEBHOOK_URL=

.github/dependabot.yml

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
version: 2
2+
updates:
3+
- package-ecosystem: npm
4+
directory: /
5+
schedule:
6+
interval: weekly
7+
open-pull-requests-limit: 10
8+
9+
- package-ecosystem: github-actions
10+
directory: /
11+
schedule:
12+
interval: weekly

.github/workflows/ci.yml

Lines changed: 17 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -6,22 +6,34 @@ on:
66
pull_request:
77
branches: [ '**' ]
88

9+
permissions:
10+
contents: read
11+
912
jobs:
10-
test:
11-
name: Run tests
13+
build:
14+
name: Typecheck, lint, test, build
1215
runs-on: ubuntu-latest
1316
steps:
1417
- name: Checkout
15-
uses: actions/checkout@v4
18+
uses: actions/checkout@v7
1619

1720
- name: Setup Node.js
18-
uses: actions/setup-node@v4
21+
uses: actions/setup-node@v7
1922
with:
2023
node-version: '20'
2124
cache: 'npm'
2225

2326
- name: Install dependencies
2427
run: npm ci
2528

29+
- name: Type check
30+
run: npx tsc --noEmit
31+
32+
- name: Lint
33+
run: npm run lint
34+
2635
- name: Run tests
27-
run: npm test --if-present
36+
run: npm test -- --ci
37+
38+
- name: Build
39+
run: npm run build

.github/workflows/codeql.yml

Lines changed: 34 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,34 @@
1+
name: CodeQL
2+
3+
on:
4+
push:
5+
branches: [ main ]
6+
pull_request:
7+
branches: [ '**' ]
8+
schedule:
9+
- cron: '17 3 * * 1'
10+
11+
permissions:
12+
contents: read
13+
14+
jobs:
15+
analyze:
16+
name: Analyze (javascript-typescript)
17+
runs-on: ubuntu-latest
18+
permissions:
19+
contents: read
20+
security-events: write
21+
22+
steps:
23+
- name: Checkout
24+
uses: actions/checkout@v7
25+
26+
- name: Initialize CodeQL
27+
uses: github/codeql-action/init@v4
28+
with:
29+
languages: javascript-typescript
30+
31+
- name: Perform CodeQL Analysis
32+
uses: github/codeql-action/analyze@v4
33+
with:
34+
category: '/language:javascript-typescript'

.gitignore

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
node_modules/
22
.next/
33
.env.local
4-
./node_modules/
4+
./node_modules/
5+
*.tsbuildinfo

0 commit comments

Comments
 (0)