chore(deps-dev): bump rollup from 2.79.2 to 4.53.3 #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: tx_mixed_beverages | |
| on: | |
| pull_request: | |
| push: | |
| branches: | |
| - master | |
| jobs: | |
| lint-py: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v6 | |
| # https://github.com/astral-sh/setup-uv/releases | |
| - uses: astral-sh/setup-uv@v7 | |
| - run: uv sync --all-extras | |
| - run: uv run ruff check . | |
| - run: uv run ruff format --check . | |
| lint-js: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v6 | |
| - uses: actions/setup-node@v6 | |
| with: | |
| node-version: "16.x" | |
| - run: npm install eslint | |
| - run: npm run lint | |
| test: | |
| runs-on: ubuntu-latest | |
| services: | |
| db: | |
| image: postgis/postgis:16-3.5-alpine | |
| env: | |
| POSTGRES_USER: postgres | |
| POSTGRES_PASSWORD: postgres | |
| POSTGRES_DB: github_actions | |
| ports: | |
| - 5432:5432 | |
| options: --mount type=tmpfs,destination=/var/lib/postgresql/data --health-cmd pg_isready --health-interval 10s --health-timeout 5s --health-retries 5 | |
| steps: | |
| - uses: actions/checkout@v6 | |
| # https://github.com/astral-sh/setup-uv/releases | |
| - uses: astral-sh/setup-uv@v7 | |
| - run: sudo apt-get install -y libpq-dev libgeos-dev gdal-bin | |
| - run: uv sync --all-extras | |
| - run: make test | |
| env: | |
| DATABASE_URL: postgis://postgres:[email protected]/github_actions |