diff --git a/.github/workflows/tact-docs-prod.yml b/.github/workflows/tact-docs-prod.yml index a1c28f72b..e039fb7d5 100644 --- a/.github/workflows/tact-docs-prod.yml +++ b/.github/workflows/tact-docs-prod.yml @@ -5,7 +5,7 @@ on: # For new release tags pushed into the repository # The check for the 'main' branch is done on the job level push: - tags: ['v[0-9]+.[0-9]+.[0-9]+'] + tags: ["v[0-9]+.[0-9]+.[0-9]+"] # Allows to run this workflow manually from the Actions tab workflow_dispatch: diff --git a/.github/workflows/tact-docs-test.yml b/.github/workflows/tact-docs-test.yml index d5726ba18..e97fdb61d 100644 --- a/.github/workflows/tact-docs-test.yml +++ b/.github/workflows/tact-docs-test.yml @@ -4,10 +4,18 @@ name: Test docs/ build on: # For new PRs, or those who are ready and/or request a review pull_request: - types: ['opened', 'edited', 'reopened', 'synchronize', 'ready_for_review', 'review_requested'] - branches: ['main'] + types: + [ + "opened", + "edited", + "reopened", + "synchronize", + "ready_for_review", + "review_requested", + ] + branches: ["main"] # Only start the workflow if anything inside the docs has changed - paths: ['docs/**'] + paths: ["docs/**"] # Allows to run this workflow manually from the Actions tab workflow_dispatch: diff --git a/.prettierignore b/.prettierignore index 1af3219a2..22b7dfce4 100644 --- a/.prettierignore +++ b/.prettierignore @@ -1,8 +1,8 @@ /dist - /src/func/funcfiftlib.js /src/func/funcfiftlib.wasm.js /src/grammar/grammar.ohm-bundle.d.ts /src/grammar/grammar.ohm-bundle.js /src/imports/stdlib.ts /grammar +/docs diff --git a/cspell.json b/cspell.json index afb83c19f..000d70b93 100644 --- a/cspell.json +++ b/cspell.json @@ -200,6 +200,6 @@ "src/test/e2e-emulated/getter-names-conflict.spec.ts", "src/test/exit-codes/contracts/compute-phase-errors.tact", "stdlib/stdlib.fc", - "/docs", + "/docs" ] }