73157d1c6c
Add dependabot config which autoupdates dependencies add release config which creates a release based on tag push Added rust and typescript ci integrations
34 lines
525 B
YAML
34 lines
525 B
YAML
name: TS CI
|
|
|
|
on:
|
|
workflow_dispatch:
|
|
push:
|
|
branches:
|
|
- main
|
|
paths-ignore:
|
|
- "src-tauri/**"
|
|
pull_request:
|
|
branches:
|
|
- main
|
|
paths-ignore:
|
|
- "src-tauri/**"
|
|
|
|
jobs:
|
|
ts-ci:
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
|
- name: Checkout
|
|
uses: actions/checkout@v4
|
|
|
|
- name: Setup Bun
|
|
uses: oven-sh/setup-bun@v2
|
|
with:
|
|
bun-version: latest
|
|
|
|
- name: Install Dependencies
|
|
run: bun install
|
|
|
|
- name: Run Lint
|
|
run: bun run lint
|