Update all non-major dependencies #834
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: Static Analysis and Tests on PR | |
| on: | |
| pull_request: | |
| jobs: | |
| static-analysis: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v6 | |
| - name: Build project for eslint | |
| run: npm install | |
| - name: Run Eslint | |
| run: npm run lint | |
| - name: Run Prettier | |
| run: npm run format | |
| test: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v6 | |
| - name: Build project for testing | |
| run: npm install | |
| - name: Run linting | |
| run: npm run lint | |
| - name: Run validation tests | |
| run: npm run test | |
| - name: Run integration tests | |
| run: npm run test:integration | |
| - name: Run frontend tests | |
| run: npm run test:front |