From 73063962c5529160a14e5179d07b7a25afeae8e6 Mon Sep 17 00:00:00 2001 From: Bernard Ngandu <126081638+BernardNganduDev@users.noreply.github.com> Date: Wed, 18 Feb 2026 16:25:06 +0200 Subject: [PATCH] Rename workflow and replace typecheck with tests --- .github/workflows/test.yml | 43 +++++--------------------------------- 1 file changed, 5 insertions(+), 38 deletions(-) diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index f3d6b01..21724d4 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -1,12 +1,12 @@ -name: Quality Assurance +name: Tests on: workflow_call: push: pull_request: jobs: - typecheck: - name: typecheck + test: + name: test runs-on: ubuntu-latest steps: @@ -34,39 +34,6 @@ jobs: - name: Install Dependencies run: bun install --frozen-lockfile - - name: Run Type Checker + - name: Run Tests run: | - bun run typecheck - - lint: - name: lint - runs-on: ubuntu-latest - - steps: - - name: Checkout Repository - uses: actions/checkout@v4 - with: - fetch-depth: 0 - - - name: Setup Node.js - uses: actions/setup-node@v4 - with: - node-version: 22 - - - name: Setup Bun - uses: oven-sh/setup-bun@v2 - - - name: Cache Bun Dependencies - uses: actions/cache@v4 - with: - path: ~/.bun/install/cache - key: ${{ runner.os }}-bun-${{ hashFiles('bun.lock') }} - restore-keys: | - ${{ runner.os }}-bun- - - - name: Install Dependencies - run: bun install --frozen-lockfile - - - name: Run Linter - run: | - bun run lint \ No newline at end of file + bun run test