Merge pull request #703 from aragon/f/sync-network-addresses #977
This file contains hidden or 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: Style Checks | |
| on: | |
| push: | |
| jobs: | |
| formatting: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout repository | |
| uses: actions/checkout@v4 | |
| with: | |
| ref: ${{ github.ref }} | |
| fetch-depth: 0 | |
| - name: Install node | |
| uses: actions/setup-node@v4 | |
| with: | |
| cache: 'yarn' | |
| node-version: 18 | |
| - name: Install dependencies | |
| run: yarn install --pure-lockfile --ignore-scripts | |
| - name: Check with prettier | |
| run: yarn run prettier:check |