Skip to content

Commit

Permalink
ci(.github): add checkout step
Browse files Browse the repository at this point in the history
  • Loading branch information
waldronmatt committed Nov 3, 2023
1 parent 95f1652 commit 84d3233
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 0 deletions.
4 changes: 4 additions & 0 deletions .github/workflows/pull.yml
Original file line number Diff line number Diff line change
Expand Up @@ -58,5 +58,9 @@ jobs:
steps:
- name: NX Affected
uses: nrwl/nx-set-shas@v4

- name: Checkout Main
run: git branch --track main origin/main

- name: Build, Lint, Test
run: npx nx affected -t build,lint,test --parallel=3
4 changes: 4 additions & 0 deletions .github/workflows/push.yml
Original file line number Diff line number Diff line change
Expand Up @@ -59,6 +59,10 @@ jobs:
steps:
- name: NX Affected
uses: nrwl/nx-set-shas@v4

- name: Checkout Main
run: git branch --track main origin/main

- name: Build, Lint, Test
run: npx nx affected -t build,lint,test --parallel=3

Expand Down

0 comments on commit 84d3233

Please sign in to comment.