feat: Region Selections Vega-Lite #1245
  
    
      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: Test Docs | |
| on: | |
| workflow_dispatch: | |
| pull_request: | |
| paths: | |
| - 'site/**' | |
| - 'yarn.lock' | |
| - '**prettier**' | |
| jobs: | |
| build-site: | |
| name: Build Site | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - name: Setup Node | |
| uses: actions/setup-node@v4 | |
| with: | |
| cache: 'yarn' | |
| node-version: 20 | |
| - name: Install Node dependencies | |
| run: yarn --frozen-lockfile | |
| - name: Lint | |
| run: yarn prettier . --check | |
| - name: Build | |
| run: yarn build:site |