Fix inverts search, when have additional conditions in scope (like default_scope) #240
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: Test deploy to GitHub Pages | |
on: | |
pull_request: | |
branches: | |
- main | |
jobs: | |
test-deploy: | |
name: Test deploy to GitHub Pages | |
runs-on: ubuntu-22.04 | |
steps: | |
- uses: actions/checkout@v3 | |
- uses: actions/setup-node@v3 | |
with: | |
node-version: 16 | |
cache: yarn | |
cache-dependency-path: docs/yarn.lock | |
- name: Install dependencies | |
run: yarn install --frozen-lockfile | |
working-directory: docs | |
- name: Test build website | |
run: yarn build | |
working-directory: docs |