Process 2025: s/Draft Note/Note Draft/ and s/Draft Registry/Registry … #3065
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: Lint JS | |
| on: | |
| push: | |
| paths: | |
| - '**/*.js' | |
| - 'package.json' | |
| pull_request: | |
| paths: | |
| - '**/*.js' | |
| - 'package.json' | |
| jobs: | |
| lint: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v6 | |
| - name: Use Node.js ${{ matrix.node-version }} | |
| uses: actions/setup-node@v6 | |
| with: | |
| cache: npm | |
| - run: npm ci | |
| - run: npm run lint |