Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
58 changes: 24 additions & 34 deletions .github/workflows/linter.yml
Original file line number Diff line number Diff line change
Expand Up @@ -144,8 +144,8 @@ jobs:
suggestions: true
config: ".cspell.jsonc"

redirects-check:
name: "Redirects"
link-check:
name: "Links: broken, navigation, redirects"
runs-on: ubuntu-latest
steps:
- name: Checkout repository
Expand All @@ -164,41 +164,13 @@ jobs:
corepack enable
npm ci

- name: Check uniqueness of redirect sources in docs.json
if: ${{ !cancelled() }}
run: npm run check:redirects -- unique

- name: Check existence of redirect destinations in docs.json
if: ${{ !cancelled() }}
run: npm run check:redirects -- exist

- name: Check redirects against the previous TON Documentation
if: ${{ !cancelled() }}
run: npm run check:redirects -- previous
# Broken

- name: Check redirects against the upstream docs.json structure
- name: Check broken links
if: ${{ !cancelled() }}
run: npm run check:redirects -- upstream
run: npm run check:links

navigation-check:
name: "Navigation"
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v4
with:
fetch-depth: 0

- name: Setup Node.js
uses: actions/setup-node@v4
with:
node-version: ${{ env.NODE_VERSION }}
cache: "npm"

- name: Install dependencies
run: |
corepack enable
npm ci
# Navigation

- name: Check uniqueness of navigation paths in docs.json
if: ${{ !cancelled() }}
Expand All @@ -211,3 +183,21 @@ jobs:
- name: Check coverage of .mdx pages by docs.json
if: ${{ !cancelled() }}
run: npm run check:navigation -- cover

# Redirects

- name: Check uniqueness of redirect sources in docs.json
if: ${{ !cancelled() }}
run: npm run check:redirects -- unique

- name: Check existence of redirect destinations in docs.json
if: ${{ !cancelled() }}
run: npm run check:redirects -- exist

- name: Check redirects against the previous TON Documentation
if: ${{ !cancelled() }}
run: npm run check:redirects -- previous

- name: Check redirects against the upstream docs.json structure
if: ${{ !cancelled() }}
run: npm run check:redirects -- upstream
12 changes: 9 additions & 3 deletions ecosystem/tma/overview.mdx
Original file line number Diff line number Diff line change
@@ -1,16 +1,22 @@
---
title: "Overview"
title: "TMA: Telegram Mini Apps overview"
sidebarTitle: "Overview"
---

Telegram Mini Apps (TMAs) are web applications that run within the Telegram messenger. They are built using web technologies — HTML, CSS, and JavaScript.

<video autoPlay muted loop className="w-full rounded-xl" src="/resources/videos/TMA.mp4">
<video
autoPlay
muted
loop
className="w-full rounded-xl"
src="/resources/videos/TMA.mp4"
>
Your browser does not support the \<video> tag.
</video>

Mini Apps run within Telegram and are instantly accessible — without the need for installation or redirects.


## TMA developer tools

- [TMA create CLI](/ecosystem/tma/create-mini-app)
Expand Down
Loading