mirror of
https://github.com/tiennm99/is-a-dev.git
synced 2026-05-17 20:59:28 +00:00
17 lines
366 B
YAML
17 lines
366 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
|
|
- run: bun test
|