Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 3 additions & 0 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,7 @@ on:

jobs:
job_build:
if: ${{ github.event.pull_request == null || github.event.pull_request.head.repo.full_name == github.repository }}
name: Build
runs-on: ubuntu-latest
steps:
Expand Down Expand Up @@ -36,6 +37,7 @@ jobs:
${{ github.workspace }}/*.tgz

job_lint:
if: ${{ github.event.pull_request == null || github.event.pull_request.head.repo.full_name == github.repository }}
name: Lint
needs: job_build
runs-on: ubuntu-latest
Expand All @@ -57,6 +59,7 @@ jobs:
run: pnpm lint

job_test:
if: ${{ github.event.pull_request == null || github.event.pull_request.head.repo.full_name == github.repository }}
name: Node (${{ matrix.node }}) Unit Tests
needs: job_build
runs-on: ubuntu-latest
Expand Down
1 change: 1 addition & 0 deletions .github/workflows/pr-conventional-commit.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@ on:

jobs:
validate-pr-title:
if: ${{ github.event.pull_request == null || github.event.pull_request.head.repo.full_name == github.repository }}
runs-on: ubuntu-latest
steps:
- name: PR Conventional Commit Validation
Expand Down
Loading