Upgrade dependencies #112
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: Continuous Releases | |
| on: [push, pull_request] | |
| jobs: | |
| build: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout code | |
| uses: actions/checkout@v6 | |
| - run: corepack enable | |
| - uses: actions/setup-node@v6 | |
| with: | |
| node-version: 24 | |
| - name: Install corepack | |
| run: npm install -g corepack | |
| - name: Install package manager | |
| run: corepack install | |
| - name: Install dependencies | |
| run: corepack pnpm install | |
| - run: corepack pnpm dlx pkg-pr-new publish |