Fix links and grammar in docs #319
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: Publish | |
on: | |
push: | |
branches: | |
- main | |
pull_request: | |
branches: [main] | |
jobs: | |
publish: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Cancel Previous Runs | |
uses: styfle/[email protected] | |
with: | |
access_token: ${{ github.token }} | |
- name: Checkout Main | |
uses: actions/checkout@v4 | |
- name: Setup pnpm | |
uses: pnpm/action-setup@v4 | |
- name: Install Dependencies | |
run: pnpm install | |
- name: Build library | |
run: pnpm run build:lib | |
- name: Build blocks | |
run: pnpm run build:blocks | |
- name: Continuous Release | |
run: pnpm dlx pkg-pr-new publish --compact './packages/lib' './packages/blocks' |