Skip to content

Commit

Permalink
Forgot to add run keyword.
Browse files Browse the repository at this point in the history
  • Loading branch information
morsellif committed Mar 2, 2024
1 parent 9c2b517 commit 85f03f8
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ jobs:
- name: Setup
uses: ./gh-actions/setup
- name: Prettier
run: bun prettier:check
run: bun run prettier:check

eslint:
name: Eslint
Expand All @@ -29,7 +29,7 @@ jobs:
- name: Setup
uses: ./gh-actions/setup
- name: ESLint
run: bun lint
run: bun run lint

typecheck:
name: Typecheck
Expand All @@ -40,7 +40,7 @@ jobs:
- name: Setup
uses: ./gh-actions/setup
- name: TypeScript
run: bun typecheck
run: bun run typecheck
build:
name: Build
runs-on: ubuntu-latest
Expand All @@ -50,4 +50,4 @@ jobs:
- name: Setup
uses: ./gh-actions/setup
- name: Build
run: bun build
run: bun run build

0 comments on commit 85f03f8

Please sign in to comment.