Skip to content

Commit

Permalink
bump
Browse files Browse the repository at this point in the history
  • Loading branch information
luutuankiet committed Nov 24, 2024
1 parent 87eedd6 commit 4f93672
Showing 1 changed file with 7 additions and 7 deletions.
14 changes: 7 additions & 7 deletions .github/workflows/slim_CI.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,12 @@ jobs:
with:
PROD_ENV: ${{ secrets.PROD_ENV }}

- name: Find Current PR
uses: jwalton/gh-find-current-pr@master
id: findPr
- name: Set PR Number
if: success() && steps.findPr.outputs.number
run: echo "PR=${{ steps.findPr.outputs.pr }}" >> $GITHUB_ENV

- name: Cache Python packages
uses: actions/cache@v3
Expand Down Expand Up @@ -66,16 +72,10 @@ jobs:
run: npm install -g "@lightdash/cli@${{ steps.version.outputs.value }}" || npm install -g @lightdash/cli@latest


- name: Find Current PR
uses: jwalton/gh-find-current-pr@master
id: findPr
- name: Set PR Number
if: success() && steps.findPr.outputs.number
run: echo "PR=${{ steps.findPr.outputs.pr }}" >> $GITHUB_ENV


- name: validate dbt models
run: dbt build --target ci --vars "$schema"
run: dbt build --target ci --vars "$PR_schema"
env:
PR_schema: '"schema_name": "ci_PR_$PR"'

Expand Down

0 comments on commit 4f93672

Please sign in to comment.