Checking format #7
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: Check format | |
run-name: Checking format | |
on: | |
pull_request: | |
branches: | |
- master | |
jobs: | |
check-formatting: | |
name: 'Check Formatting' | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout files | |
uses: actions/checkout@v4 | |
- name: Restore node_modules | |
uses: OffchainLabs/actions/node-modules/install@main | |
- name: Check formatting with Prettier | |
run: yarn prettier:format |