Skip to content

fix(core): prevent scrolling on canvas focus #2112

fix(core): prevent scrolling on canvas focus

fix(core): prevent scrolling on canvas focus #2112

Workflow file for this run

name: CI
on: [ push, pull_request ]
jobs:
Build:
strategy:
matrix:
os: [ macos-latest, ubuntu-latest, windows-latest ]
runs-on: ${{ matrix.os }}
steps:
- name: Checkout
uses: actions/checkout@v2
- name: Use Node.js
uses: actions/setup-node@v1
with:
node-version: 14
- name: Cache Node.js modules
uses: actions/cache@v2
with:
# npm cache files are stored in `~/.npm` on Linux/macOS
path: ~/.npm
key: ${{ runner.OS }}-node-${{ hashFiles('**/package-lock.json') }}
restore-keys: |
${{ runner.OS }}-node-
${{ runner.OS }}-
- name: Install dependencies
run: npm ci
- name: Build
env:
TEST_BROWSERS: ChromeHeadless,PhantomJS
COVERAGE: 1
run: npm run all
- name: Upload coverage
uses: codecov/codecov-action@v2