Skip to content

fix: prevent mobile touch-pan events #81

fix: prevent mobile touch-pan events

fix: prevent mobile touch-pan events #81

Workflow file for this run

name: CI
on: [push, pull_request]
jobs:
build:
name: CI
runs-on: ubuntu-latest
strategy:
matrix:
node-version: ["16"]
steps:
- uses: actions/checkout@v2
with:
fetch-depth: 0
- name: Setup node ${{ matrix.node-version }}
uses: actions/setup-node@v2
with:
node-version: ${{ matrix.node-version }}
- name: Install yarn
run: npm install -g yarn
- name: Install the project dependencies
run: yarn install
- name: Prettier check
run: yarn prettier
- name: Lint check
run: yarn lint
- name: Stylelint check
run: yarn lint:css
- name: Type check
run: yarn type-check