chore(deps-dev): bump eslint from 9.17.0 to 9.18.0 in /docs in the dependencies group #977
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: test | |
on: | |
pull_request: | |
permissions: | |
contents: write | |
jobs: | |
ui-lint: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- name: UI lint | |
working-directory: docs | |
run: | | |
npm install | |
make lint | |
test: | |
runs-on: ubuntu-latest | |
strategy: | |
matrix: | |
python-version: | |
- "3.9" | |
- "3.10" | |
- "3.11" | |
- "3.12" | |
steps: | |
- 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: | | |
pip install poetry | |
poetry install --with lint,pytest,dev | |
- name: Lint and format | |
run: | | |
poetry run black --check . | |
poetry run isort --check-only . | |
poetry run flake8 . | |
- name: Test | |
run: make test |