fix(docs): add missing steps to run the example and prerequisites #3188
Workflow file for this run
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
name: CI | |
on: | |
push: | |
branches: | |
- main | |
pull_request: | |
branches: | |
- main | |
jobs: | |
build: | |
name: Build | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- uses: actions/setup-node@v3 | |
with: | |
node-version-file: ".nvmrc" | |
- uses: pnpm/action-setup@v2 | |
with: | |
version: 8.6.10 | |
- name: Dependencies | |
run: | | |
pnpm install | |
- name: Build | |
run: | | |
pnpm run build | |
- name: Lint | |
run: | | |
pnpm run lint | |
- name: Formatting | |
run: | | |
pnpm run fmt:check |