This repository was archived by the owner on Apr 28, 2026. It is now read-only.
chore: Update version to 1.0.7 (#26) #70
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: On push | |
| on: push | |
| jobs: | |
| run-checks: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Check out commit | |
| uses: actions/checkout@v3 | |
| - uses: pnpm/action-setup@v4.0.0 | |
| - name: Use Node.js 20 | |
| uses: actions/setup-node@v3 | |
| with: | |
| node-version: 20.x | |
| cache: pnpm | |
| - name: Run checks | |
| run: | | |
| pnpm install --frozen-lockfile | |
| pnpm build | |
| pnpm lint | |
| pnpm test | |