Skip to content

chore: add ts-jest dep #64

chore: add ts-jest dep

chore: add ts-jest dep #64

Workflow file for this run

name: Release
on:
push:
branches:
- main
permissions:
contents: write
id-token: write
jobs:
version:
if: "contains(github.event.head_commit.message, 'chore: version packages')"
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
with:
fetch-depth: 0
- uses: actions/setup-node@v4
with:
node-version: '22.x'
registry-url: 'https://registry.npmjs.org'
- run: yarn install --frozen-lockfile
- run: yarn build
- name: Publish packages to npm
uses: changesets/action@v1
with:
publish: yarn changeset publish
env:
NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }}
GITHUB_TOKEN: ${{ secrets.WORKSPACE_TOKEN }}