fix: keep params in path overlay normalizer at the higher level #979
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 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: latest | |
- name: Install Node dependencies | |
run: yarn --frozen-lockfile | |
- name: Lint | |
run: yarn prettierbase --check | |
- name: Build | |
run: yarn build:site |