Skip to content

feat improved log messages #150

feat improved log messages

feat improved log messages #150

Workflow file for this run

name: JS
on:
merge_group:
types: [checks_requested]
pull_request:
paths:
- '**.js'
- '**.jsx'
- '**.ts'
- '**.tsx'
concurrency:
group: ci-${{ github.ref }}-${{ github.workflow }}
cancel-in-progress: true
jobs:
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v5
# @v2
- uses: oven-sh/setup-bun@22457c87c1b161cf7dde222c3e82b2b5f8d2bed2
- run: bun ci
- name: lint
run: "bun run lint"
- name: typecheck
run: "bun run typecheck"
- name: test
run: "bun run test"