API examples: Updated books-read to include shelf info #3146
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-js | |
| on: | |
| push: | |
| paths: | |
| - '**.js' | |
| - '**.json' | |
| pull_request: | |
| paths: | |
| - '**.js' | |
| - '**.json' | |
| jobs: | |
| build: | |
| if: ${{ github.ref != 'refs/heads/l10n_development' }} | |
| runs-on: ubuntu-24.04 | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - name: Install NPM deps | |
| run: npm ci | |
| - name: Run formatting check | |
| run: npm run lint |