From 8992183f3c250ed0ea1ebdf957be541dec6abc72 Mon Sep 17 00:00:00 2001 From: Mario Cao Date: Tue, 10 Dec 2024 10:05:20 +0000 Subject: [PATCH] chore(ci): update lint job --- .github/workflows/ci.yml | 7 ++----- 1 file changed, 2 insertions(+), 5 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index b74c637..3d93193 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -20,11 +20,8 @@ jobs: - name: "Install the dependencies 📦" run: "bun install" - - name: "Lint TypeScript 🧹" - run: "bun run lint:ts" - - - name: "Lint Solidity 🧹" - run: "bun run lint:sol" + - name: "Lint TypeScript & Solidity 🧹" + run: "bun run check" - name: "Compile the contracts 🛠️" run: "bun run compile"