From 2fd9813ee62695d7c32e61db04bd94b390f684d2 Mon Sep 17 00:00:00 2001 From: Tim McMackin Date: Mon, 8 Jan 2024 14:05:53 -0500 Subject: [PATCH 1/4] Files with broken image links to test the tests --- docs/dApps/best-practices.md | 2 ++ docs/smart-contracts.mdx | 2 +- 2 files changed, 3 insertions(+), 1 deletion(-) diff --git a/docs/dApps/best-practices.md b/docs/dApps/best-practices.md index 1708b5d66..8fdc020d0 100644 --- a/docs/dApps/best-practices.md +++ b/docs/dApps/best-practices.md @@ -9,6 +9,8 @@ When creating a frontend application that uses the Tezos blockchain, you will mo There are some best practices to follow when you use one of these frameworks to make sure that your code is safe, your app behaves in the intended way and your users enjoy a great experience. Here are the most important ones. +![smorg](/img/whatever.jpg) + ## Dapp lifecycle The JS framework of your choice probably introduces different functions or models to manage the lifecycles of your application: when it's mounted, when it's updated, and when it's unmounted. diff --git a/docs/smart-contracts.mdx b/docs/smart-contracts.mdx index 6a6a8d8ae..d8810d482 100644 --- a/docs/smart-contracts.mdx +++ b/docs/smart-contracts.mdx @@ -99,7 +99,7 @@ The origination of a Tezos smart contract must define: * The initial value of the storage * A set of instructions in Michelson -
+
After the contract is deployed, it cannot be changed or removed from the blockchain. From 18d2eee14c2788e61ec73d2c9467ce2c76a52c6d Mon Sep 17 00:00:00 2001 From: Tim McMackin Date: Mon, 8 Jan 2024 14:12:00 -0500 Subject: [PATCH 2/4] Not getting my changed files --- .github/workflows/tests.yml | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/.github/workflows/tests.yml b/.github/workflows/tests.yml index 5c9bde91b..b46cf120b 100644 --- a/.github/workflows/tests.yml +++ b/.github/workflows/tests.yml @@ -18,9 +18,7 @@ jobs: uses: Ana06/get-changed-files@v1.2 with: format: 'csv' - filter: | - *.md - *.mdx + filter: '*.md,*.mdx' - run: npm run test -- --filesToCheck=${{ steps.files.outputs.added_modified }} test: From e6950857a7b61da02ebfc32da0d0f6ae49c9d96a Mon Sep 17 00:00:00 2001 From: Tim McMackin Date: Mon, 8 Jan 2024 14:14:42 -0500 Subject: [PATCH 3/4] filter: * --- .github/workflows/tests.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/tests.yml b/.github/workflows/tests.yml index b46cf120b..1a1369ed0 100644 --- a/.github/workflows/tests.yml +++ b/.github/workflows/tests.yml @@ -18,7 +18,7 @@ jobs: uses: Ana06/get-changed-files@v1.2 with: format: 'csv' - filter: '*.md,*.mdx' + filter: '*' - run: npm run test -- --filesToCheck=${{ steps.files.outputs.added_modified }} test: From a9dad23ec0807cfe35ed563cd59eb1369c343666 Mon Sep 17 00:00:00 2001 From: Tim McMackin Date: Mon, 8 Jan 2024 14:17:47 -0500 Subject: [PATCH 4/4] try .mdx? --- .github/workflows/tests.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/tests.yml b/.github/workflows/tests.yml index 1a1369ed0..5552a8fb0 100644 --- a/.github/workflows/tests.yml +++ b/.github/workflows/tests.yml @@ -18,7 +18,7 @@ jobs: uses: Ana06/get-changed-files@v1.2 with: format: 'csv' - filter: '*' + filter: '*.mdx?' - run: npm run test -- --filesToCheck=${{ steps.files.outputs.added_modified }} test: