-
Notifications
You must be signed in to change notification settings - Fork 301
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
docs: doc update to include note for walmart developers (#2021)
* docs: update readme * docs: update readme * docs: update readme * docs: update readme * docs: update readme * fix: github ci * fix: cu docupdate --------- Co-authored-by: Arun Vishnu <[email protected]> Co-authored-by: Shubham Sharma - s0s0p6u <[email protected]>
- Loading branch information
1 parent
823ad29
commit 62bac52
Showing
34 changed files
with
222 additions
and
310 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,45 @@ | ||
name: Docs | ||
|
||
on: | ||
push: | ||
branches: [ "docupdate*" ] | ||
pull_request: | ||
branches: [ "docupdate*" ] | ||
|
||
# Allows you to run this workflow manually from the Actions tab | ||
workflow_dispatch: | ||
|
||
jobs: | ||
build: | ||
runs-on: ubuntu-latest | ||
|
||
strategy: | ||
matrix: | ||
node-version: [18.x] | ||
|
||
steps: | ||
- uses: actions/checkout@v3 | ||
# with: | ||
# fetch-depth: 0 | ||
|
||
- name: Use Node.js ${{ matrix.node-version }} | ||
uses: actions/setup-node@v3 | ||
with: | ||
node-version: ${{ matrix.node-version }} | ||
|
||
- name: Install pnpm | ||
run: npm install -g pnpm | ||
|
||
- name: Install and Build Docs | ||
working-directory: ./docusaurus | ||
run: | | ||
pnpm install --force | ||
pnpm build | ||
- name: Deploy Docs | ||
working-directory: ./docusaurus | ||
run: | | ||
touch build/.nojekyll | ||
rm -rf ../docs | ||
cp -r build ../docs | ||
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
Binary file not shown.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
Oops, something went wrong.