This repository was archived by the owner on Mar 13, 2025. It is now read-only.
add BRA Token (#476) #600
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: Lint Check | |
| on: [push, pull_request, merge_group] | |
| jobs: | |
| test: | |
| runs-on: ubuntu-latest | |
| name: Lint Check | |
| steps: | |
| - uses: actions/checkout@v2 | |
| - name: Setup node | |
| uses: actions/setup-node@v1 | |
| with: | |
| node-version: 18 | |
| - name: Install prettier | |
| run: npm install -g prettier | |
| - name: Check linting | |
| run: prettier --check src/ |