Skip to content

Feature/auto generate data #95

Feature/auto generate data

Feature/auto generate data #95

Workflow file for this run

# This workflow will do a clean installation of node dependencies, cache/restore them, build the source code and run tests across different versions of node
# For more information see: https://docs.github.com/en/actions/automating-builds-and-tests/building-and-testing-nodejs
name: CLI Checks
on:
push:
branches: ["main"]
pull_request:
branches: ["main"]
jobs:
cli:
name: Format & build the CLI tool
runs-on: ubuntu-latest
steps:
# ...
- uses: actions/checkout@v4
- uses: oven-sh/setup-bun@v1
# run any `bun` or `bunx` command
- run: bun install
working-directory: ./cli
- run: bun run format
working-directory: ./cli
- run: bun test
working-directory: ./cli
- run: bun run build
working-directory: ./cli