Skip to content

feat: init

feat: init #1

Workflow file for this run

# name: CI
# on:
# pull_request:
# types: [opened, synchronize, reopened]
# jobs:
# lint-and-test:
# runs-on: ubuntu-latest
# steps:
# - uses: actions/checkout@v4
# with:
# fetch-depth: 0
# - name: Setup Node.js
# uses: actions/setup-node@v4
# with:
# node-version: '22'
# cache: 'npm'
# - name: Install dependencies
# run: npm install
# - name: Set up Python
# uses: actions/setup-python@v5
# with:
# python-version: '3.x'
# cache: 'pip'
# - name: Run pre-commit
# run: pip install pre-commit && pre-commit run --all-files
# - name: Run tests
# run: make test