feat(regime)
This commit is contained in:
commit
655175f273
36 changed files with 1066 additions and 0 deletions
25
actions/checks/action.yml
Normal file
25
actions/checks/action.yml
Normal file
|
|
@ -0,0 +1,25 @@
|
|||
name: Checks
|
||||
description: Run lint, type-check, and tests
|
||||
|
||||
runs:
|
||||
using: composite
|
||||
steps:
|
||||
- name: Setup Bun
|
||||
shell: bash
|
||||
run: curl -fsSL https://bun.sh/install | bash && echo "$HOME/.bun/bin" >> "$GITHUB_PATH"
|
||||
|
||||
- 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