diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml new file mode 100644 index 0000000..0343065 --- /dev/null +++ b/.github/workflows/ci.yml @@ -0,0 +1,19 @@ +name: CI + +on: + push: + branches: + - main + pull_request: + branches: + - "**" + +permissions: + contents: write + +jobs: + lint: + uses: listee-dev/listee-ci/.github/workflows/lint.yml@main + + typecheck: + uses: listee-dev/listee-ci/.github/workflows/typecheck.yml@main