Skip to content

Commit b9ecff5

Browse files
committed
chore: remove docusaurus related actions and vale setup in favor of new docs system
1 parent 5d6bb64 commit b9ecff5

File tree

5 files changed

+5
-12
lines changed

5 files changed

+5
-12
lines changed

.github/workflows/check-pr.yml

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -26,8 +26,6 @@ jobs:
2626
- name: Install && Build - SDK and Sample App
2727
uses: ./.github/actions/install-and-build-sdk
2828
- name: Lint
29-
run: yarn lerna-workspaces run lint && cd docusaurus && npx prettier --check '**/*.mdx'
29+
run: yarn lerna-workspaces run lint
3030
- name: Test
3131
run: yarn test:coverage
32-
env:
33-
GITHUB_TOKEN: ${{ secrets.DOCUSAURUS_GH_TOKEN }}

.github/workflows/next-release.yml

Lines changed: 1 addition & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -30,12 +30,8 @@ jobs:
3030
- name: Install && Build - SDK and Sample App
3131
uses: ./.github/actions/install-and-build-sdk
3232
- name: Lint
33-
run: yarn lerna-workspaces run lint && (cd docusaurus; npx prettier --check '**/*.mdx')
33+
run: yarn lerna-workspaces run lint
3434
- name: Test
3535
run: yarn test:coverage
36-
env:
37-
GITHUB_TOKEN: ${{ secrets.DOCUSAURUS_GH_TOKEN }}
3836
- name: Publish Next Release
3937
run: GITHUB_SHORT_SHA="$(git rev-parse --short $GITHUB_SHA)" yarn release-next
40-
env:
41-
NODE_AUTH_TOKEN: ${{ secrets.NPM_PUBLISH_TOKEN }}

.github/workflows/release.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ jobs:
3131
- name: Install && Build - SDK and Sample App
3232
uses: ./.github/actions/install-and-build-sdk
3333
- name: Lint
34-
run: yarn lerna-workspaces run lint && cd docusaurus && npx prettier --check '**/*.mdx'
34+
run: yarn lerna-workspaces run lint
3535
- name: Publish Release
3636
run: yarn release
3737
env:

package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -31,8 +31,8 @@
3131
"release-next": "yarn lerna-workspaces run release-next",
3232
"extract-changelog": "rm -rf NEXT_RELEASE_CHANGELOG.md && yarn lerna-workspaces run extract-changelog",
3333
"bootstrap": "yarn lerna-workspaces run bootstrap",
34-
"lint": "yarn lerna-workspaces run lint && (cd docusaurus && npx prettier --check '**/*.mdx')",
35-
"lint-fix": "yarn lerna-workspaces run lint-fix && (cd docusaurus && npx prettier --write '**/*.mdx')",
34+
"lint": "yarn lerna-workspaces run lint",
35+
"lint-fix": "yarn lerna-workspaces run lint-fix",
3636
"build": "yarn lerna-workspaces run build",
3737
"test:coverage": "yarn lerna-workspaces run test:coverage",
3838
"test:unit": "yarn lerna-workspaces run test:unit",

package/.eslintignore

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,4 +6,3 @@ vendor/
66
*.md
77
src/components/docs/
88
lib/
9-
docusaurus/

0 commit comments

Comments
 (0)