From 657d21b5742996c1fb40b1d47e8a3a91e87b017d Mon Sep 17 00:00:00 2001 From: Dmitry Nourell Date: Thu, 19 Dec 2024 02:14:09 +0300 Subject: [PATCH] ci: run linter, type-checker, and tests --- .github/workflows/tests.yml | 14 ++++++++++++++ 1 file changed, 14 insertions(+) create mode 100644 .github/workflows/tests.yml diff --git a/.github/workflows/tests.yml b/.github/workflows/tests.yml new file mode 100644 index 0000000..d4afdde --- /dev/null +++ b/.github/workflows/tests.yml @@ -0,0 +1,14 @@ +name: Test +on: + push + +jobs: + test: + name: Perform checks + runs-on: ubuntu-24.04 + steps: + - uses: actions/checkout@v4 + - uses: oven-sh/setup-bun@v2 + - run: bun lint + - run: bun test + - run: bun run typecheck