Skip to content

waveform spawning + security (#11) #21

waveform spawning + security (#11)

waveform spawning + security (#11) #21

Workflow file for this run

name: Format
on:
push:
branches: [main]
pull_request:
branches: [main]
permissions:
contents: read
jobs:
check:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v4
- name: Set up Python
uses: actions/setup-python@v4
with:
python-version: '3.12'
- name: Set up Node.js
uses: actions/setup-node@v4
with:
node-version: '22'
- name: Install dependencies
run: |
python -m pip install --upgrade pip
python -m pip install tox
npm ci
- name: Run Prettier check
run: npm run format:check
- name: Run tox format check
run: tox -e format-check