Skip to content

Merge branch 'main' of https://github.com/thetomcraig/cursorless #4

Merge branch 'main' of https://github.com/thetomcraig/cursorless

Merge branch 'main' of https://github.com/thetomcraig/cursorless #4

Workflow file for this run

name: Pre-commit
permissions: read-all
on:
push:
branches:
- main
pull_request:
types: [opened, synchronize, reopened]
merge_group:
branches: [main]
jobs:
pre-commit:
name: Pre-commit
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-python@v4
with:
python-version: 3.x
- run: corepack enable
- uses: actions/setup-node@v4
with:
node-version-file: .nvmrc
cache: pnpm
- run: pnpm --color install
- uses: pre-commit/[email protected]
- uses: pre-commit-ci/[email protected]
if: always()