Skip to content

Fix dev.ts

Fix dev.ts #13

Workflow file for this run

name: Publish Core Package
on:
push:
branches:
- main
paths:
- 'packages/core/**'
- '.github/workflows/publish-core.yml'
permissions:
id-token: write
contents: read
jobs:
publish:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version: '24'
registry-url: 'https://registry.npmjs.org'
- name: Install dependencies
run: npm ci
- name: Build core package
run: npm run build -w @kodular/tinywebdb-core
- name: Publish to npm
run: npm publish -w @kodular/tinywebdb-core