Skip to content

chore: update package.json description #6

chore: update package.json description

chore: update package.json description #6

Workflow file for this run

name: Publish to npm

Check failure on line 1 in .github/workflows/publish.yml

View workflow run for this annotation

GitHub Actions / .github/workflows/publish.yml

Invalid workflow file

(Line: 10, Col: 5): Unexpected value 'runs'
on:
release:
types: [published]
jobs:
publish:
runs-on: ubuntu-latest
runs:
using: node24
steps:
- name: Checkout code
uses: actions/checkout@v4
- name: Setup Bun
uses: oven-sh/setup-bun@v2
with:
bun-version: latest
- name: Install dependencies
run: bun install
- name: Build
run: bun run build:all
- name: Publish to npm
uses: JS-DevTools/npm-publish@v3
with:
token: ${{ secrets.NPM_TOKEN }}