chore: bump lefthook from 1.13.6 to 2.0.0 #1324
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: Build | |
on: | |
workflow_dispatch: | |
pull_request: | |
push: | |
branches: [main] | |
jobs: | |
build-package: | |
name: Build Package | |
runs-on: ubuntu-24.04 | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v5.0.0 | |
- name: Setup pnpm | |
uses: threeal/setup-pnpm-action@v1.0.0 | |
- name: Install Dependencies | |
run: pnpm install | |
- name: Build Package | |
run: pnpm ncc build src/index.ts && git diff --exit-code dist |