Refactor Test Plan for the Minimal Data Grid Example v2 #2210
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' | |
| - '.eslintrc.json' | |
| - '.github/workflows/js-lint.yml' | |
| branches-ignore: | |
| - 'dependabot/**' | |
| pull_request: | |
| paths: | |
| - '**/*.js' | |
| - 'package*.json' | |
| - '.eslintrc.json' | |
| - '.github/workflows/js-lint.yml' | |
| jobs: | |
| lint: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v5 | |
| - name: Use Node.js | |
| uses: actions/setup-node@v5 | |
| with: | |
| node-version: '20.x' | |
| cache: 'npm' | |
| - name: Install dependencies | |
| run: npm ci | |
| - name: Run linter | |
| run: npm run lint |