Skip to content

ci: add release workflow and set version to 0.1.0 #12

ci: add release workflow and set version to 0.1.0

ci: add release workflow and set version to 0.1.0 #12

Workflow file for this run

name: CI
on:
push:
branches: [main]
pull_request:
branches: [main]
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
jobs:
test:
name: Test & Typecheck
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Install bun
uses: oven-sh/setup-bun@v2
with:
bun-version: "1.3.12"
- name: Install dependencies
run: bun install --frozen-lockfile || bun install
- name: Typecheck
run: bun run typecheck
- name: Run tests
run: bun test
lint-shell:
name: ShellCheck adapter scripts
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Run shellcheck
uses: ludeeus/action-shellcheck@2.0.0
with:
scandir: ./adapters
severity: warning