Skip to content

fix: Allow magic numbers for indexing #16

fix: Allow magic numbers for indexing

fix: Allow magic numbers for indexing #16

Workflow file for this run

name: Publish package
on:
workflow_dispatch:
push:
branches:
- main
jobs:
build:
runs-on: ubuntu-latest
permissions:
contents: read
packages: write
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version: "20.x"
registry-url: "https://npm.pkg.github.com"
- uses: oven-sh/setup-bun@v1
- run: bun install --frozen-lockfile
- run: npm publish
env:
NODE_AUTH_TOKEN: ${{ secrets.GITHUB_TOKEN }}