docs: updated text on get user plans #210
This file contains hidden or 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
| name: Docs Build | |
| on: | |
| push: | |
| pull_request: | |
| types: [opened, synchronize] | |
| paths: | |
| - "docs/**" | |
| jobs: | |
| docs_build: | |
| name: Docs Build | |
| timeout-minutes: 15 | |
| runs-on: ${{ matrix.os }} | |
| strategy: | |
| matrix: | |
| os: [ubuntu-latest] | |
| steps: | |
| - name: Check out code | |
| uses: actions/checkout@v4 | |
| with: | |
| fetch-depth: 2 | |
| - name: Setup Node | |
| uses: actions/setup-node@v3 | |
| with: | |
| node-version: 16.14.x | |
| - name: Install dependencies | |
| run: npm ci | |
| - name: Install docs dependencies | |
| run: cd ./docs && npm ci | |
| - name: build | |
| run: cd ./docs && npm run build |