From c9076be6310662deaa7273a33f0f70ec2211b082 Mon Sep 17 00:00:00 2001 From: Pete Davison Date: Wed, 19 Jul 2023 21:56:33 +0000 Subject: [PATCH 1/9] test --- .github/workflows/lint.yml | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/.github/workflows/lint.yml b/.github/workflows/lint.yml index 5eb6059946..30e9f00f61 100644 --- a/.github/workflows/lint.yml +++ b/.github/workflows/lint.yml @@ -22,3 +22,9 @@ jobs: uses: golangci/golangci-lint-action@v3 with: version: v1.51.1 + + - name: prettier + uses: creyD/prettier_action@v4.3 + with: + dry: True + github_token: ${{secrets.GH_PAT}} From 7e9923bfafa3323ab5d15baba1796b1dc1f37b3d Mon Sep 17 00:00:00 2001 From: Pete Davison Date: Wed, 19 Jul 2023 22:00:12 +0000 Subject: [PATCH 2/9] test --- docs/babel.config.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/babel.config.js b/docs/babel.config.js index e00595dae7..6bf8d26f14 100644 --- a/docs/babel.config.js +++ b/docs/babel.config.js @@ -1,3 +1,3 @@ module.exports = { - presets: [require.resolve('@docusaurus/core/lib/babel/preset')], + presets: [require.resolve('@docusaurus/core/lib/babel/preset')] }; From 577bf828136fe76adac7a6bfeac06f92dad26fe8 Mon Sep 17 00:00:00 2001 From: Pete Davison Date: Wed, 19 Jul 2023 22:01:08 +0000 Subject: [PATCH 3/9] test --- docs/docs/faq.md | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/docs/docs/faq.md b/docs/docs/faq.md index 9ec63141ff..eeccb4919d 100644 --- a/docs/docs/faq.md +++ b/docs/docs/faq.md @@ -14,8 +14,7 @@ current shell, so it can't change the environment of the shell that started it. This limitation is shared by other task runners and build tools too. A common way to work around this is to create a task that will generate output -that can be parsed by your shell. For example, to set an environment variable on -your shell you can write a task like this: +that can be parsed by your shell. For example, to set an environment variable on your shell you can write a task like this: ```yaml my-shell-env: From e0fc232f171a29dbb03f835a54e7b76aaa96dfc9 Mon Sep 17 00:00:00 2001 From: Pete Davison Date: Wed, 19 Jul 2023 22:07:21 +0000 Subject: [PATCH 4/9] test --- .github/workflows/lint.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/.github/workflows/lint.yml b/.github/workflows/lint.yml index 30e9f00f61..789ff53cd8 100644 --- a/.github/workflows/lint.yml +++ b/.github/workflows/lint.yml @@ -27,4 +27,5 @@ jobs: uses: creyD/prettier_action@v4.3 with: dry: True + prettier_options: --config .prettierrc.yml github_token: ${{secrets.GH_PAT}} From aff403d51cf12b035ee268869280d808249a8dc5 Mon Sep 17 00:00:00 2001 From: Pete Davison Date: Wed, 19 Jul 2023 22:10:58 +0000 Subject: [PATCH 5/9] test --- .github/workflows/lint.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/lint.yml b/.github/workflows/lint.yml index 789ff53cd8..ec7b30ad88 100644 --- a/.github/workflows/lint.yml +++ b/.github/workflows/lint.yml @@ -27,5 +27,5 @@ jobs: uses: creyD/prettier_action@v4.3 with: dry: True - prettier_options: --config .prettierrc.yml + prettier_options: --check --config .prettierrc.yml github_token: ${{secrets.GH_PAT}} From 1064dac4e7aacb136d334844fabd7314b54bfbdc Mon Sep 17 00:00:00 2001 From: Pete Davison Date: Wed, 19 Jul 2023 22:19:00 +0000 Subject: [PATCH 6/9] test --- .github/workflows/lint.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/.github/workflows/lint.yml b/.github/workflows/lint.yml index ec7b30ad88..04814bbb2b 100644 --- a/.github/workflows/lint.yml +++ b/.github/workflows/lint.yml @@ -27,5 +27,6 @@ jobs: uses: creyD/prettier_action@v4.3 with: dry: True + file_pattern: '**/*.{js,md,yaml}' prettier_options: --check --config .prettierrc.yml github_token: ${{secrets.GH_PAT}} From 90e0139d96f8d769192257631ab6646333d0101a Mon Sep 17 00:00:00 2001 From: Pete Davison Date: Wed, 19 Jul 2023 22:20:34 +0000 Subject: [PATCH 7/9] test --- .github/workflows/lint.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/lint.yml b/.github/workflows/lint.yml index 04814bbb2b..6cb9da614c 100644 --- a/.github/workflows/lint.yml +++ b/.github/workflows/lint.yml @@ -28,5 +28,5 @@ jobs: with: dry: True file_pattern: '**/*.{js,md,yaml}' - prettier_options: --check --config .prettierrc.yml + prettier_options: --check --config .prettierrc.yml . github_token: ${{secrets.GH_PAT}} From 6be52b9315164845efa9c64b143558e1aa33855b Mon Sep 17 00:00:00 2001 From: Pete Davison Date: Wed, 19 Jul 2023 22:23:13 +0000 Subject: [PATCH 8/9] test --- .github/workflows/lint.yml | 2 +- .prettierignore | 1 + 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/.github/workflows/lint.yml b/.github/workflows/lint.yml index 6cb9da614c..ec3eebefc1 100644 --- a/.github/workflows/lint.yml +++ b/.github/workflows/lint.yml @@ -27,6 +27,6 @@ jobs: uses: creyD/prettier_action@v4.3 with: dry: True - file_pattern: '**/*.{js,md,yaml}' + file_pattern: '**/*.{js,md,yaml,yml,json}' prettier_options: --check --config .prettierrc.yml . github_token: ${{secrets.GH_PAT}} diff --git a/.prettierignore b/.prettierignore index 1fcfbd40d6..f186799f7a 100644 --- a/.prettierignore +++ b/.prettierignore @@ -1 +1,2 @@ docs/docs/changelog.md +testdata From 4ed2ae204faf3cb61802614f2b2da3285b72bb75 Mon Sep 17 00:00:00 2001 From: Pete Davison Date: Wed, 19 Jul 2023 22:25:23 +0000 Subject: [PATCH 9/9] test --- .prettierignore | 1 + 1 file changed, 1 insertion(+) diff --git a/.prettierignore b/.prettierignore index f186799f7a..9e2f2fdfb1 100644 --- a/.prettierignore +++ b/.prettierignore @@ -1,2 +1,3 @@ docs/docs/changelog.md testdata +docs/i18n