Skip to content

Commit

Permalink
fix(ci): rename build job to test
Browse files Browse the repository at this point in the history
  • Loading branch information
seansica committed Oct 21, 2024
1 parent 7c4323b commit fbc6e96
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ jobs:
run: npx commitlint --from ${{ github.event.pull_request.base.sha || github.event.before }} --to ${{ github.event.pull_request.head.sha || github.sha }} --verbose

# Job 2: Build and Test
build:
test:
runs-on: ubuntu-latest
needs: [commitlint]
steps:
Expand Down Expand Up @@ -80,7 +80,7 @@ jobs:

# Job 3: Publish
publish:
needs: [build]
needs: [test]
runs-on: ubuntu-latest
permissions:
contents: write # To publish a GitHub release
Expand Down

0 comments on commit fbc6e96

Please sign in to comment.