kuboon_daily-nav/.github/workflows/test.yml
Copilot ee701e1bf7
Add workflow to automatically create git tag on version bump (#2)
* fix devcontainer
* release workflow
* support pre tag
* deno -> main
2025-11-29 15:46:40 +09:00

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