Skip to content

Ignore type exports (ex. export type foo = string;) (fixes #47) [pu… #42

Ignore type exports (ex. export type foo = string;) (fixes #47) [pu…

Ignore type exports (ex. export type foo = string;) (fixes #47) [pu… #42

Workflow file for this run

name: Publish to npm
on:
push:
branches:
- main
jobs:
publish:
runs-on: ubuntu-latest
if: ${{ contains(github.event.head_commit.message, '[publish]') }}
steps:
- uses: actions/checkout@v4
- uses: oven-sh/setup-bun@v2
- run: bun install
- run: bun ci
- uses: ArnaudBarre/npm-publish@v1
with:
working-directory: dist
npm-token: ${{ secrets.NPM_TOKEN }}