Skip to content

Merge branch 'main' of https://github.com/cheshire-cat-ai/api-client-ts #138

Merge branch 'main' of https://github.com/cheshire-cat-ai/api-client-ts

Merge branch 'main' of https://github.com/cheshire-cat-ai/api-client-ts #138

Workflow file for this run

name: CI
on:
push:
branches:
- "**"
jobs:
build:
runs-on: ubuntu-latest
permissions:
contents: write
steps:
- uses: actions/checkout@v3
- uses: pnpm/action-setup@v2
with:
version: 8
- uses: actions/setup-node@v3
with:
node-version: 16.x
cache: "pnpm"
- run: pnpm install --frozen-lockfile
- run: pnpm lint
- run: pnpm build
- uses: stefanzweifel/git-auto-commit-action@v4
with:
commit_message: Build package
commit_user_name: Builder Bot