Skip to content

Broken links test #165

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 5 commits into from
Oct 2, 2024
Merged
Show file tree
Hide file tree
Changes from 3 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
26 changes: 26 additions & 0 deletions .github/workflows/build-errors-check.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,26 @@
name: Check Build Errors

on:
pull_request:
branches:
- main # Run on PRs targeting the main branch

jobs:
build-check:
runs-on: ubuntu-latest
steps:
- name: Checkout Repository
uses: actions/checkout@v4
with:
fetch-depth: 0

- name: Install Dependencies
run: npm install

- name: Build
run: npm run build





2 changes: 1 addition & 1 deletion docs/resources/ui/pages/page-lifecycle.md
Original file line number Diff line number Diff line change
Expand Up @@ -251,7 +251,7 @@ the above example:
You can set the Data Type of your Page State variable to any primitive data types such as **String,
Integer, Boolean, Double** or to any other complex built-in data types such as **Enum, Custom Data
Type, Document,** etc. To learn more about the available data types, refer the [**Data
Representation Section.** ](../../data-representation/overview.md)
Representation Section.** ](../../../data-representation/overview.md)
:::

### Get Page State value
Expand Down
4 changes: 2 additions & 2 deletions docusaurus.config.ts
Original file line number Diff line number Diff line change
Expand Up @@ -7,8 +7,8 @@ const config: Config = {
tagline: 'Learn how to build mobile, web and desktop apps incredibly fast - without sacrificing on app quality or features',
url: 'https://docs.flutterflow.io',
baseUrl: '/',
onBrokenLinks: 'log',
onBrokenMarkdownLinks: 'log',
onBrokenLinks: 'throw',
onBrokenMarkdownLinks: 'throw',
favicon: 'logos/favicon.png',
i18n: {
defaultLocale: 'en',
Expand Down
Loading