Skip to content

api: add db and engine checks to healthcheck #12

api: add db and engine checks to healthcheck

api: add db and engine checks to healthcheck #12

Workflow file for this run

name: Release TDK Packages
on:
push:
branches:
- main
concurrency: ${{ github.workflow }}-${{ github.ref }}
jobs:
release:
name: Release
runs-on: ubuntu-latest
steps:
- name: Check out repo
uses: actions/checkout@v4
- name: Set up Node.js
uses: actions/setup-node@v4
with:
node-version: 20
- name: Install dependencies
run: npm ci
- name: Create release PR or publish to npm
uses: changesets/action@v1
with:
version: npm run package:version
publish: npm run package:publish
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
NPM_TOKEN: ${{ secrets.NPM_TOKEN }}