Add static checks for editor endpoint clients #2
Workflow file for this run
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: JavaScript static checks | |
| on: | |
| push: | |
| pull_request: | |
| jobs: | |
| javascript-checks: | |
| name: Prettier, ESLint, and checkJs | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Check out repository | |
| uses: actions/checkout@v4 | |
| - name: Set up Node.js | |
| uses: actions/setup-node@v4 | |
| with: | |
| node-version: 22 | |
| cache: npm | |
| - name: Install JavaScript tooling | |
| run: npm ci | |
| - name: Run JavaScript checks | |
| run: npm run check |