Skip to content

Commit

Permalink
chore: remove docusaurus related actions and vale setup in favor of n…
Browse files Browse the repository at this point in the history
…ew docs system
  • Loading branch information
khushal87 committed Dec 24, 2024
1 parent 5d6bb64 commit b9ecff5
Show file tree
Hide file tree
Showing 5 changed files with 5 additions and 12 deletions.
4 changes: 1 addition & 3 deletions .github/workflows/check-pr.yml
Original file line number Diff line number Diff line change
Expand Up @@ -26,8 +26,6 @@ jobs:
- name: Install && Build - SDK and Sample App
uses: ./.github/actions/install-and-build-sdk
- name: Lint
run: yarn lerna-workspaces run lint && cd docusaurus && npx prettier --check '**/*.mdx'
run: yarn lerna-workspaces run lint
- name: Test
run: yarn test:coverage
env:
GITHUB_TOKEN: ${{ secrets.DOCUSAURUS_GH_TOKEN }}
6 changes: 1 addition & 5 deletions .github/workflows/next-release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -30,12 +30,8 @@ jobs:
- name: Install && Build - SDK and Sample App
uses: ./.github/actions/install-and-build-sdk
- name: Lint
run: yarn lerna-workspaces run lint && (cd docusaurus; npx prettier --check '**/*.mdx')
run: yarn lerna-workspaces run lint
- name: Test
run: yarn test:coverage
env:
GITHUB_TOKEN: ${{ secrets.DOCUSAURUS_GH_TOKEN }}
- name: Publish Next Release
run: GITHUB_SHORT_SHA="$(git rev-parse --short $GITHUB_SHA)" yarn release-next
env:
NODE_AUTH_TOKEN: ${{ secrets.NPM_PUBLISH_TOKEN }}
2 changes: 1 addition & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ jobs:
- name: Install && Build - SDK and Sample App
uses: ./.github/actions/install-and-build-sdk
- name: Lint
run: yarn lerna-workspaces run lint && cd docusaurus && npx prettier --check '**/*.mdx'
run: yarn lerna-workspaces run lint
- name: Publish Release
run: yarn release
env:
Expand Down
4 changes: 2 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -31,8 +31,8 @@
"release-next": "yarn lerna-workspaces run release-next",
"extract-changelog": "rm -rf NEXT_RELEASE_CHANGELOG.md && yarn lerna-workspaces run extract-changelog",
"bootstrap": "yarn lerna-workspaces run bootstrap",
"lint": "yarn lerna-workspaces run lint && (cd docusaurus && npx prettier --check '**/*.mdx')",
"lint-fix": "yarn lerna-workspaces run lint-fix && (cd docusaurus && npx prettier --write '**/*.mdx')",
"lint": "yarn lerna-workspaces run lint",
"lint-fix": "yarn lerna-workspaces run lint-fix",
"build": "yarn lerna-workspaces run build",
"test:coverage": "yarn lerna-workspaces run test:coverage",
"test:unit": "yarn lerna-workspaces run test:unit",
Expand Down
1 change: 0 additions & 1 deletion package/.eslintignore
Original file line number Diff line number Diff line change
Expand Up @@ -6,4 +6,3 @@ vendor/
*.md
src/components/docs/
lib/
docusaurus/

0 comments on commit b9ecff5

Please sign in to comment.