Skip to content

[Tests] Initial explorations of providing context to linked verses. #5

[Tests] Initial explorations of providing context to linked verses.

[Tests] Initial explorations of providing context to linked verses. #5

Workflow file for this run

name: Tests
run-name: "[Tests] ${{ github.event.head_commit.message }}"
on:
pull_request:
branches: ["*"]
push:
branches: [base]
jobs:
PrecommitTests:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version: 20
cache: 'npm'
cache-dependency-path: package-lock.json
- run: 'npm install --no-audit'
- run: 'npm install -g eslint'
- uses: actions/setup-python@v5
with:
python-version: '3.11'
- run: 'pip install -r requirements.txt'
- name: Run pre-commit
run: pre-commit run --all-files