Expand e2e tests to cover the true end-to-end flow #182
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: build-docs | |
on: | |
pull_request: | |
branches: | |
- main | |
jobs: | |
build: | |
name: build | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: actions/setup-node@v4 | |
with: | |
cache: yarn | |
node-version-file: docs/.nvmrc | |
cache-dependency-path: docs | |
- run: yarn install --frozen-lockfile | |
working-directory: docs | |
- run: yarn build | |
working-directory: docs |