Skip to content

Commit

Permalink
Update PR builder
Browse files Browse the repository at this point in the history
  • Loading branch information
JayaShakthi97 committed Sep 4, 2024
1 parent aa9e0f2 commit c924c0b
Showing 1 changed file with 6 additions and 11 deletions.
17 changes: 6 additions & 11 deletions .github/workflows/pr-builder.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,8 @@ env:
jobs:
lint:
name: ⬣ ESLint (STATIC ANALYSIS)
if: ${{ github.event_name == 'pull_request' || github.event.label.name == 'trigger-pr-builder' }}
# if: ${{ github.event_name == 'pull_request' || github.event.label.name == 'trigger-pr-builder' }}
if: ${{ false }}
runs-on: ubuntu-latest
strategy:
matrix:
Expand Down Expand Up @@ -84,7 +85,8 @@ jobs:

typecheck:
name: ʦ Typecheck (STATIC ANALYSIS)
if: ${{ github.event.label.name == 'trigger-pr-builder' || github.event_name == 'pull_request'}}
# if: ${{ github.event.label.name == 'trigger-pr-builder' || github.event_name == 'pull_request'}}
if: ${{ false }}
runs-on: ubuntu-latest
strategy:
matrix:
Expand Down Expand Up @@ -142,6 +144,7 @@ jobs:

test:
name: 👾 Unit Test (TESTING)
if: ${{ false }}
needs: [ typecheck ]
runs-on: ubuntu-latest
strategy:
Expand Down Expand Up @@ -227,7 +230,6 @@ jobs:

build:
name: 🚧 Build
needs: [ test, typecheck ]
runs-on: ubuntu-latest
strategy:
matrix:
Expand All @@ -238,14 +240,7 @@ jobs:
steps:
- name: ⬇️ Checkout
id: checkout-master
uses: actions/checkout@v2.3.3
with:
fetch-depth: 1
ref: master

- name: ⬇️ Checkout
id: checkout
uses: actions/checkout@v2.3.3
uses: actions/checkout@v4
with:
fetch-depth: 1

Expand Down

0 comments on commit c924c0b

Please sign in to comment.