Skip to content

chore(makefile): add publish command #8

chore(makefile): add publish command

chore(makefile): add publish command #8

Workflow file for this run

name: tiny-result-ci
on:
push:
branches:
- main
- develop
- feat/**
- chore/**
- fix/**
pull_request:
branches:
- main
- develop
- feat/**
- chore/**
- fix/**
jobs:
test:
runs-on: ubuntu-latest
container: oven/bun:latest
steps:
- uses: actions/checkout@v4
- name: install dependencies
run: bun install
- name: format check
run: bun run format:check
- name: test coverage
run: bun run test
- name: build
run: bun run build