Skip to content

dont initialy return 0,0 as its a valid mouse position but is wrong #104

dont initialy return 0,0 as its a valid mouse position but is wrong

dont initialy return 0,0 as its a valid mouse position but is wrong #104

Workflow file for this run

name: CI
on: [push]
jobs:
build:
name: Build, lint, and test on Node ${{ matrix.node }} and ${{ matrix.os }}
runs-on: ${{ matrix.os }}
strategy:
matrix:
node: ['18.x', '20.x']
os: [ubuntu-latest, windows-latest, macOS-latest]
steps:
- name: Checkout repo
uses: actions/checkout@v4
- name: Use Node ${{ matrix.node }}
uses: actions/setup-node@v4
with:
node-version: ${{ matrix.node }}
cache: 'npm' # Enable npm caching
- name: Install dependencies
run: |
npm install --legacy-peer-deps
npm install -g yarn
- name: Lint
run: yarn lint
- name: Test
run: yarn test --ci --coverage --maxWorkers=2
- name: Build
run: yarn build