Skip to content

Bump @types/node from 25.5.2 to 25.6.0 in /webapp #1856

Bump @types/node from 25.5.2 to 25.6.0 in /webapp

Bump @types/node from 25.5.2 to 25.6.0 in /webapp #1856

Workflow file for this run

name: Pylint
on: [push]
jobs:
build:
runs-on: ubuntu-latest
env:
working-directory: ./ai
strategy:
matrix:
python-version: ["3.12"]
steps:
- uses: actions/checkout@v6
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v6
with:
python-version: ${{ matrix.python-version }}
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install pyink
working-directory: ${{ env.working-directory }}
- name: Analysing the code with pyink
run: |
pyink $(git ls-files '*.py')
working-directory: ${{ env.working-directory }}