Skip to content

Bump vite from 4.5.1 to 5.0.10 in /swift_browser_ui_frontend #2952

Bump vite from 4.5.1 to 5.0.10 in /swift_browser_ui_frontend

Bump vite from 4.5.1 to 5.0.10 in /swift_browser_ui_frontend #2952

Workflow file for this run

name: Python style check
on:
pull_request:
jobs:
style_check:
strategy:
max-parallel: 4
matrix:
os: [ubuntu-latest]
python-version: ["3.11"]
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v4
- name: Setup node
uses: actions/setup-node@v4
with:
node-version: ${{ matrix.node }}
- uses: actions/checkout@v4
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python-version }}
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install tox tox-gh-actions
- name: Test flake8 syntax with tox
run: tox -e flake8
- name: Test mypy typing with tox
run: tox -e mypy
- name: bandit static check
run: tox -e bandit
- name: black style check
run: tox -e black