feat: add pluggable friction stores #361
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: Prerelease | |
| on: [push, pull_request] | |
| permissions: {} | |
| jobs: | |
| build: | |
| name: Prerelease | |
| # pkg-pr-new resolves the run through its public API, which cannot see a private repository. This | |
| # turns itself on when the repository goes public. | |
| if: ${{ !github.event.repository.private }} | |
| runs-on: ubuntu-latest | |
| permissions: | |
| contents: read | |
| steps: | |
| - name: Clone repository | |
| uses: actions/checkout@v6 | |
| with: | |
| persist-credentials: false | |
| - name: Install dependencies | |
| uses: ./.github/actions/install-dependencies | |
| - name: Prerelease | |
| run: | | |
| pnpm build | |
| pnpm dlx pkg-pr-new publish --pnpm |