Bump @types/lodash from 4.14.202 to 4.17.17 #1387
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: | |
| - "*" | |
| push: | |
| branches: | |
| - '*' | |
| jobs: | |
| build: | |
| name: Run Linters | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Check out Git repo | |
| uses: actions/checkout@v3 | |
| with: | |
| node-version: 16.11.0 | |
| - name: Set up node.js | |
| uses: actions/setup-node@v1 | |
| with: | |
| node-version: '18.x' | |
| - name: Install node.js deps | |
| run: npm i eslint --save-dev | |
| - name: Run lint | |
| run: npx eslint --fix ./src/**/*.ts |