From cda6e71b1479e71c2780ea70027427f16da2fc43 Mon Sep 17 00:00:00 2001 From: Gen Tamura Date: Sun, 26 Oct 2025 18:13:48 +0900 Subject: [PATCH] Add CI workflow without release job --- .github/workflows/ci.yml | 24 ++++++++++++++++++++++++ 1 file changed, 24 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..cba9e20 --- /dev/null +++ b/.github/workflows/ci.yml @@ -0,0 +1,24 @@ +name: CI + +on: + push: + branches: + - main + pull_request: + branches: + - "**" + +permissions: + contents: write + pull-requests: write + id-token: write + +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