fix: Do not scroll to top on value change #57
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: main | |
on: | |
pull_request: | |
types: [opened, synchronize, reopened] | |
jobs: | |
main: | |
name: Build, lint and test | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- uses: actions/setup-node@v3 | |
with: | |
node-version: 18.x | |
- uses: bahmutov/npm-install@v1 | |
- run: yarn workspace next-query-params run build | |
- run: yarn workspaces run lint | |
- run: yarn workspace next-query-params run test | |
e2e-app: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Install dependencies | |
uses: cypress-io/github-action@v2 | |
with: | |
runTests: false | |
- run: yarn workspace next-query-params run build | |
- uses: cypress-io/github-action@v2 | |
with: | |
start: yarn start | |
build: yarn build | |
working-directory: packages/example-app | |
e2e-pages: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Install dependencies | |
uses: cypress-io/github-action@v2 | |
with: | |
runTests: false | |
- run: yarn workspace next-query-params run build | |
- uses: cypress-io/github-action@v2 | |
with: | |
start: yarn start | |
build: yarn build | |
working-directory: packages/example-pages |