chore(release): bump version to 1.8.0 #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
| # This workflow will run tests and then publish a package to JSR. | |
| name: JSR Package | |
| on: | |
| push: | |
| branches: | |
| - main | |
| jobs: | |
| test: | |
| uses: ./.github/workflows/test.yml | |
| publish: | |
| needs: test | |
| runs-on: ubuntu-latest | |
| permissions: | |
| contents: read | |
| id-token: write | |
| steps: | |
| - name: Checkout | |
| uses: actions/checkout@main | |
| - name: Setup Node.js | |
| uses: actions/setup-node@v6 | |
| with: | |
| node-version: latest | |
| - name: Install pnpm | |
| run: npm install pnpm -g | |
| - name: Install dependencies | |
| run: pnpm install --frozen-lockfile | |
| - name: Publish to JSR | |
| run: npx jsr publish --config jsr.json |