From cb3f9d62caf4e82cac2f30167e33422dfa27f4e7 Mon Sep 17 00:00:00 2001 From: Gen Tamura Date: Wed, 22 Oct 2025 16:34:37 +0900 Subject: [PATCH] Add base CI --- .github/workflows/ci.yml | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) create mode 100644 .github/workflows/ci.yml diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml new file mode 100644 index 0000000..30caf39 --- /dev/null +++ b/.github/workflows/ci.yml @@ -0,0 +1,16 @@ +name: CI + +on: + push: + branches: [main] + pull_request: + +jobs: + lint: + uses: listee-dev/listee-ci/.github/workflows/lint.yml@main + + typecheck: + uses: listee-dev/listee-ci/.github/workflows/typecheck.yml@main + + test: + uses: listee-dev/listee-ci/.github/workflows/test.yml@main