Skip to content

chore: minor bump

chore: minor bump #4

Workflow file for this run

---
name: Publish package to GitHub Packages
on: [push]
jobs:
release:
runs-on: ubuntu-latest
permissions:
contents: read
packages: write
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version: '20.14.0'
registry-url: 'https://npm.pkg.github.com'
- run: yarn install
env:
NODE_AUTH_TOKEN: ${{ secrets.GITHUB_TOKEN }}
- run: yarn test
- run: yarn build
- if: github.ref == 'refs/heads/main'
run: yarn publish
env:
NODE_AUTH_TOKEN: ${{ secrets.GITHUB_TOKEN }}