Skip to content

Commit

Permalink
fix(ci): if not draft
Browse files Browse the repository at this point in the history
  • Loading branch information
JakobJingleheimer committed Dec 7, 2024
1 parent a8fbb4e commit d47e11e
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,10 +7,11 @@ on:
branches: ["main"]
pull_request:
branches: ["main"]
if: github.event.pull_request.draft == false

jobs:
lint-and-types:
if: github.event.pull_request.draft == false

runs-on: ubuntu-latest

strategy:
Expand All @@ -27,6 +28,8 @@ jobs:
- run: node --run type-check

tests:
if: github.event.pull_request.draft == false

strategy:
fail-fast: false
matrix:
Expand Down

0 comments on commit d47e11e

Please sign in to comment.