mirror of
https://github.com/tiennm99/is-a-dev.git
synced 2026-05-17 04:59:21 +00:00
19 lines
391 B
YAML
19 lines
391 B
YAML
name: Checks
|
|
|
|
on: [pull_request, workflow_dispatch]
|
|
|
|
jobs:
|
|
validation:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- uses: actions/checkout@v4
|
|
with:
|
|
ref: ${{ github.event.pull_request.head.sha }}
|
|
fetch-depth: 0
|
|
- uses: oven-sh/setup-bun@v1
|
|
with:
|
|
bun-version: latest
|
|
- run: bun install
|
|
- name: Run tests
|
|
run: bun test
|