Skip to content

Commit

Permalink
chore: rm lint CI
Browse files Browse the repository at this point in the history
  • Loading branch information
tnkshuuhei committed Sep 20, 2024
1 parent f0371e8 commit 8172f5c
Showing 1 changed file with 1 addition and 24 deletions.
25 changes: 1 addition & 24 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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:
Expand All @@ -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"
Expand Down

0 comments on commit 8172f5c

Please sign in to comment.