diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 7550749..3065d75 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -12,29 +12,6 @@ on: - "main" jobs: - lint: - runs-on: "ubuntu-latest" - steps: - - name: "Check out the repo" - uses: "actions/checkout@v4" - - - name: "Install Foundry" - uses: "foundry-rs/foundry-toolchain@v1" - - - name: "Install Bun" - uses: "oven-sh/setup-bun@v1" - - - name: "Install the Node.js dependencies" - run: "bun install" - - - name: "Lint the code" - run: "bun run lint" - - - name: "Add lint summary" - run: | - echo "## Lint result" >> $GITHUB_STEP_SUMMARY - echo "✅ Passed" >> $GITHUB_STEP_SUMMARY - build: runs-on: "ubuntu-latest" steps: @@ -59,7 +36,7 @@ jobs: echo "✅ Passed" >> $GITHUB_STEP_SUMMARY test: - needs: ["lint", "build"] + needs: ["build"] runs-on: "ubuntu-latest" steps: - name: "Check out the repo"