Update README to improve clarity #236
Workflow file for this run
This file contains hidden or 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: CI | |
| on: | |
| workflow_dispatch: | |
| pull_request: | |
| push: | |
| branches: [main] | |
| jobs: | |
| build: | |
| name: Build | |
| runs-on: ubuntu-24.04 | |
| steps: | |
| - name: Checkout | |
| uses: actions/checkout@v6.0.2 | |
| - name: Install Lefthook | |
| run: | | |
| curl -1sLf 'https://dl.cloudsmith.io/public/evilmartians/lefthook/setup.deb.sh' | sudo -E bash | |
| sudo apt install lefthook | |
| - name: Setup pnpm | |
| uses: threeal/setup-pnpm-action@v1.0.0 | |
| with: | |
| version: 10.33.4 | |
| - name: Check pre-commit hook | |
| run: lefthook run pre-commit --all-files | |
| - name: Test | |
| run: pnpm test | |
| - name: Package | |
| run: pnpm pack |