Skip to content

remove helmet enchants from ninja integration #34

remove helmet enchants from ninja integration

remove helmet enchants from ninja integration #34

Workflow file for this run

name: CI
on:
pull_request:
jobs:
lint-py:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Set up Python
uses: actions/setup-python@v4
with:
python-version: 3.11
- name: Install dependencies
run: |
python -m pip install --upgrade pip
python -m pip install -r requirements-dev.txt
- name: Lint
run: python -m ruff check .
lint-electron:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Set up Node
uses: actions/setup-node@v3
with:
node-version: 20.9
- name: Install dependencies
run: npm ci
- name: Lint JS
run: npm run lintjs
- name: Lint CSS
run: npm run lintcss