feat(regime)
This commit is contained in:
commit
faacaba2f5
37 changed files with 1060 additions and 0 deletions
24
actions/checks/action.yml
Normal file
24
actions/checks/action.yml
Normal file
|
|
@ -0,0 +1,24 @@
|
|||
name: Checks
|
||||
description: Run lint, type-check, and tests
|
||||
|
||||
runs:
|
||||
using: composite
|
||||
steps:
|
||||
- name: Setup Bun
|
||||
uses: https://github.com/oven-sh/setup-bun@v2
|
||||
|
||||
- name: Install dependencies
|
||||
shell: bash
|
||||
run: bun install --frozen-lockfile
|
||||
|
||||
- name: Lint
|
||||
shell: bash
|
||||
run: bun run lint
|
||||
|
||||
- name: Type check
|
||||
shell: bash
|
||||
run: bun run check
|
||||
|
||||
- name: Test
|
||||
shell: bash
|
||||
run: bun run test
|
||||
Loading…
Add table
Add a link
Reference in a new issue