diff --git a/.github/workflows/deploy.yml b/.github/workflows/deploy.yml index 1c34b54..9d20261 100644 --- a/.github/workflows/deploy.yml +++ b/.github/workflows/deploy.yml @@ -17,7 +17,7 @@ env: VPS_USER: ${{ secrets.VPS_USER }} jobs: - test: + lint: runs-on: ubuntu-latest steps: - name: Checkout @@ -33,11 +33,11 @@ jobs: - name: Install deps run: bun install --frozen-lockfile - - name: Test - run: bun test --preload ./test/helpers/setup-env.ts test/rateLimit.test.ts test/file.test.ts test/health.test.ts test/env.test.ts test/telegram.test.ts test/upload.test.ts test/files.test.ts test/db.test.ts test/bot.test.ts test/bootstrap.test.ts test/swagger.test.ts test/auth.test.ts test/auth-routes.test.ts test/s3-auth.test.ts test/s3-operations.test.ts test/s3-bucket-config.test.ts test/web-api.test.ts test/bot-pool.test.ts + - name: Lint (biome) + run: bunx biome check src test build-and-deploy: - needs: test + needs: lint runs-on: ubuntu-latest steps: - name: Checkout