42 lines
727 B
YAML
42 lines
727 B
YAML
name: Checks
|
|
|
|
on:
|
|
workflow_call:
|
|
pull_request:
|
|
branches:
|
|
- main
|
|
push:
|
|
branches:
|
|
- main
|
|
|
|
permissions:
|
|
contents: read
|
|
|
|
jobs:
|
|
checks:
|
|
timeout-minutes: 15
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- name: Checkout code
|
|
uses: actions/checkout@v6
|
|
with:
|
|
fetch-depth: 0
|
|
|
|
- name: Install dependencies
|
|
uses: "./.github/actions/install-dependencies"
|
|
|
|
- name: Run lint
|
|
shell: bash
|
|
run: bun run lint:ci
|
|
|
|
- name: Run type checks
|
|
shell: bash
|
|
run: bun run tsc
|
|
|
|
- name: Run tests
|
|
shell: bash
|
|
run: bun run test --ci --coverage
|
|
|
|
- name: Build project
|
|
shell: bash
|
|
run: bun run build
|