mirror of
https://github.com/kuboon/daily-nav.git
synced 2026-07-22 06:57:03 +00:00
28 lines
452 B
YAML
28 lines
452 B
YAML
name: Test
|
|
|
|
on:
|
|
workflow_call:
|
|
pull_request:
|
|
branches: ["main"]
|
|
|
|
jobs:
|
|
test:
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
|
- name: Checkout
|
|
uses: actions/checkout@v6
|
|
with:
|
|
fetch-depth: 0
|
|
|
|
- name: Setup Deno
|
|
uses: denoland/setup-deno@v2
|
|
|
|
- name: Verify formatting
|
|
run: deno fmt --check
|
|
|
|
- name: Run linter
|
|
run: deno lint
|
|
|
|
# - name: Run tests
|
|
# run: deno test -A
|