Bump vite from 7.1.4 to 7.1.5 in the npm_and_yarn group across 1 dire… #30
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: CI checks for the backend | |
| on: | |
| push: | |
| branches: [main] | |
| paths-ignore: | |
| - "**/*.{ts,tsx,js,md,txt,toml}" | |
| - "{public,scrapers}/**/*.json" | |
| pull_request: | |
| branches: [main] | |
| paths-ignore: | |
| - "**/*.{ts,tsx,js,md,txt,toml}" | |
| - "{public,scrapers}/**/*.json" | |
| env: | |
| python-version: 3.7 | |
| jobs: | |
| black: | |
| name: Black | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v5 | |
| - uses: psf/black@stable | |
| pylint: | |
| name: Pylint | |
| runs-on: ubuntu-22.04 | |
| steps: | |
| - uses: actions/checkout@v5 | |
| - name: Set up Python 3.7 | |
| uses: actions/setup-python@v5 | |
| with: | |
| python-version: ${{ env.python-version }} | |
| cache: "pip" | |
| - name: Install dependencies | |
| run: | | |
| python -m pip install --upgrade pip | |
| pip install -r requirements.txt | |
| pip install pylint | |
| - name: Analysing the code with pylint | |
| run: | | |
| pylint $(git ls-files '*.py') | |
| integration: | |
| name: Test for valid JSON output | |
| runs-on: ubuntu-22.04 #NOTE: python 3.7 is NOT supported on ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v5 | |
| - name: Set up Python 3.7 | |
| uses: actions/setup-python@v5 | |
| with: | |
| python-version: ${{ env.python-version }} | |
| cache: "pip" | |
| - name: Install dependencies | |
| run: | | |
| python -m pip install --upgrade pip | |
| pip install -r requirements.txt | |
| pip install pylint | |
| - name: Run scrapers | |
| run: python3 -m scrapers | |
| - name: Check existence of public/latest.json | |
| run: test -f public/latest.json || exit 1 |