Add @inato-form/react-hook-form and @inato-form/mantine packages #6
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: Snapshot | |
on: | |
pull_request: | |
branches: [main] | |
workflow_dispatch: | |
permissions: | |
actions: write # Necessary to cancel workflow executions | |
checks: write # Necessary to write reports | |
pull-requests: write # Necessary to comment on PRs | |
contents: read | |
packages: write | |
jobs: | |
snapshot: | |
name: Snapshot | |
runs-on: ubuntu-latest | |
timeout-minutes: 10 | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Install dependencies | |
uses: ./.github/actions/setup | |
- name: Build package | |
run: pnpm build | |
- name: Create snapshot | |
id: snapshot | |
run: pnpx pkg-pr-new@0.0.24 publish --pnpm --comment=off ./packages/* |