Skip to content

Add support for high-resolution Midi CCs #84

Add support for high-resolution Midi CCs

Add support for high-resolution Midi CCs #84

Workflow file for this run

name: Check JavaScript for conformance with Prettier
on:
push:
pull_request:
jobs:
prettier:
runs-on: ubuntu-latest
steps:
- name: Check out repo
uses: actions/checkout@v2
- uses: actions/cache@v2
name: Configure npm caching
env:
cache-name: cache-node-modules-prettier
with:
path: ~/.npm
key: ${{ runner.os }}-build-${{ env.cache-name }}-${{ hashFiles('**/package-lock.json') }}
restore-keys: |
${{ runner.os }}-build-${{ env.cache-name }}-
${{ runner.os }}-build-
${{ runner.os }}-
- name: Install npm dependencies
run: npm install
- name: Run prettier
run: |-
npx prettier --check 'src'