Skip to content

fix: add behavior: 'instant' to window.scrollTo in toggleScroll #533

fix: add behavior: 'instant' to window.scrollTo in toggleScroll

fix: add behavior: 'instant' to window.scrollTo in toggleScroll #533

Workflow file for this run

name: CI
on:
push:
branches:
- master
pull_request:
branches:
- "*"
jobs:
test:
name: Test code
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Use Node.js 14 version
uses: actions/setup-node@v2
with:
node-version: 14
check-latest: true
- name: Install, test
run: |
npm install
npm run test
env:
CI: true
lint:
name: Linting code
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Use Node.js 14 version
uses: actions/setup-node@v2
with:
node-version: 14
check-latest: true
- name: Install, lint
run: |
npm install
npm run lint
env:
CI: true