Skip to content

Migrate from [hotkeys](https://github.com/jaywcjlove/hotkeys-js/) to … #33

Migrate from [hotkeys](https://github.com/jaywcjlove/hotkeys-js/) to …

Migrate from [hotkeys](https://github.com/jaywcjlove/hotkeys-js/) to … #33

Workflow file for this run

name: CI
on:
- push
- pull_request
jobs:
test:
name: Node.js ${{ matrix.node-version }} on ${{ matrix.os }}
runs-on: ${{ matrix.os }}
strategy:
fail-fast: false
matrix:
node-version: [ 16, 17, 18, 19 ]
os: [ ubuntu-latest, macos-latest, windows-latest ]
steps:
- uses: actions/checkout@v3
- uses: actions/setup-node@v3
with:
node-version: ${{ matrix.node-version }}
- name: Install dependencies
run: yarn install --ignore-engines
- name: XO
run: yarn xo