Skip to content

✨ Rewrites + fix dep to hotfixes #47

✨ Rewrites + fix dep to hotfixes

✨ Rewrites + fix dep to hotfixes #47

Workflow file for this run

name: Publish
on:
push:
pull_request:
jobs:
build:
runs-on: ubuntu-latest
timeout-minutes: 5
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version: "22.x"
registry-url: "https://registry.npmjs.org"
- run: yarn install
- run: yarn build
- run: npm publish --dry-run
- run: npm publish
if: startsWith(github.ref, 'refs/tags/')
env:
NODE_AUTH_TOKEN: ${{ secrets.NODE_AUTH_TOKEN }}