[Tests] Initial explorations of providing context to linked verses. #5
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 |