[DT-400-npm]: Bump the npm-minor-patch-dependencies group with 2 updates #3347
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 | |
| on: | |
| pull_request: | |
| branches: | |
| - develop | |
| jobs: | |
| lint: | |
| timeout-minutes: 180 | |
| strategy: | |
| matrix: | |
| node-version: [20.x] | |
| if: ${{ !contains(github.event.pull_request.labels.*.name, 'skip-ci') }} | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Check out the repository | |
| uses: actions/checkout@v4 | |
| with: | |
| persist-credentials: false | |
| - name: Use Node.js ${{ matrix.node-version }} | |
| uses: actions/setup-node@v3 | |
| with: | |
| node-version: ${{ matrix.node-version }} | |
| - name: npm ci | |
| run: npm ci | |
| - name: Run ESLint | |
| run: npm run lint |