Skip to content

minor: fix tsconfig.json #32

minor: fix tsconfig.json

minor: fix tsconfig.json #32

Workflow file for this run

on:
push:
branches:
- main
- release
pull_request:
jobs:
ci:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: oven-sh/setup-bun@v1
with:
bun-version: latest
- uses: actions/setup-node@v4
with:
node-version: 20
cache: npm
- run: npm ci
- run: npm run lint
- run: npm run test
- run: npm run typecheck
- run: |
npm run examples
echo "[test] checking examples output"
git diff --exit-code -- ./examples/
- run: npm run build
- run: npx -q --no-install semantic-release
env:
GITHUB_TOKEN: ${{ github.token }}
NPM_TOKEN: ${{ secrets.NPM_TOKEN }}