Skip to content

Commit

Permalink
chore: dont run lint
Browse files Browse the repository at this point in the history
  • Loading branch information
brent-hoover committed Jun 16, 2024
1 parent 6e1f3e1 commit ae69177
Showing 1 changed file with 17 additions and 0 deletions.
17 changes: 17 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,8 +9,25 @@ on:
- develop

jobs:
lint:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v2

- name: Install Bun
run: curl -fsSL https://bun.sh/install | bash
shell: bash

- name: Set up Bun
run: echo "export PATH=/home/runner/.bun/bin:$PATH" >> $GITHUB_ENV

- name: Install dependencies
run: bun install

test:
runs-on: ubuntu-latest
needs: lint
steps:
- name: Checkout code
uses: actions/checkout@v2
Expand Down

0 comments on commit ae69177

Please sign in to comment.