This file contains 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: Run Tests and Linting | |
on: | |
push: | |
branches: | |
- main | |
jobs: | |
test-and-lint: | |
runs-on: ubuntu-latest | |
name: Run ESLint and Jest Tests | |
steps: | |
- uses: actions/checkout@v3 | |
- uses: bahmutov/npm-install@v1 | |
- run: npm run lint # Assuming that "npm run lint" runs ESLint | |
- run: npm run test # "npm run test" to run Jest tests |