Added a Visualizer for when a Note Falls out of Range #8
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Prettier format check | |
on: | |
push: | |
pull_request: | |
permissions: | |
contents: read | |
jobs: | |
prettier: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
- name: Setup Node.js | |
uses: actions/[email protected] | |
with: | |
node-version: 20 | |
cache: "npm" | |
- name: Install node_modules | |
run: npm ci | |
- name: Prettier format check | |
run: npx prettier . --check |