Create a README.md for Manual For Data Science Projects pdf #286
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 Code and Workflows | |
| on: | |
| pull_request: | |
| push: | |
| jobs: | |
| lint: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - uses: actions/setup-node@v4 | |
| with: | |
| node-version: '20' | |
| - name: Install dev dependencies | |
| run: npm ci || npm i | |
| - name: Run ESLint and Prettier checks | |
| run: npm run lint:ci | |
| - name: Actionlint (GitHub workflows) | |
| uses: reviewdog/action-actionlint@v1 | |
| with: | |
| github_token: ${{ secrets.GITHUB_TOKEN }} |