0.9.0 #105
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: CI | |
| on: | |
| push: | |
| branches: | |
| - main | |
| tags: | |
| - "v*" | |
| pull_request: | |
| jobs: | |
| install: | |
| runs-on: ubuntu-latest | |
| timeout-minutes: 10 | |
| name: Node | |
| steps: | |
| - name: Checkout Code | |
| uses: actions/checkout@v7 | |
| - uses: pnpm/action-setup@v6 | |
| - name: Use Node 24 and pnpm | |
| uses: actions/setup-node@v6 | |
| with: | |
| node-version: 24 | |
| cache: 'pnpm' | |
| registry-url: 'https://registry.npmjs.org' | |
| - name: Use Bun | |
| uses: oven-sh/setup-bun@v2 | |
| - name: Install Dependencies | |
| run: pnpm install --frozen-lockfile | |
| - name: Build Site | |
| run: pnpm run build:site | |
| release: | |
| runs-on: ubuntu-latest | |
| needs: [install] | |
| if: startsWith(github.ref, 'refs/tags/') | |
| env: | |
| NPM_TOKEN: ${{ secrets.NPM_TOKEN }} | |
| steps: | |
| - name: Checkout Code | |
| uses: actions/checkout@v7 | |
| - uses: pnpm/action-setup@v6 | |
| - name: Use Node 24 and pnpm | |
| uses: actions/setup-node@v6 | |
| with: | |
| node-version: 24 | |
| cache: 'pnpm' | |
| registry-url: 'https://registry.npmjs.org' | |
| - name: Use Bun | |
| uses: oven-sh/setup-bun@v2 | |
| - name: Install Dependencies | |
| run: pnpm install --frozen-lockfile | |
| - name: Build Package | |
| run: pnpm run build | |
| - name: Determine tag | |
| id: determine_tag | |
| run: | | |
| echo "tag=$(echo $GITHUB_REF | grep -Eo 'alpha|beta|rc')" >> $GITHUB_OUTPUT | |
| - name: Add auth token to npmrc | |
| run: | | |
| echo "//registry.npmjs.org/:_authToken=$NPM_TOKEN" >> ~/.npmrc | |
| - name: Publish to versioned tag | |
| if: steps.determine_tag.outputs.tag != '' | |
| run: | | |
| echo "Publishing to ${{ steps.determine_tag.outputs.tag }} tag" | |
| pnpm publish --tag ${{ steps.determine_tag.outputs.tag }} --no-git-check | |
| - name: Publish to latest | |
| if: steps.determine_tag.outputs.tag == '' | |
| run: | | |
| echo "Publishing to latest" | |
| pnpm publish --no-git-check |