Skip to content

Commit

Permalink
move checkout step
Browse files Browse the repository at this point in the history
  • Loading branch information
Shayne Preston committed Nov 11, 2024
1 parent 4290415 commit 10581b4
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 3 deletions.
3 changes: 0 additions & 3 deletions .github/actions/setup-job/action.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -3,9 +3,6 @@ description: Setup job environment and cached dependencies for reusability acros
runs:
using: 'composite'
steps:
- name: Checkout Code
uses: actions/checkout@v4

- name: Install PNPM
uses: pnpm/action-setup@v4
with:
Expand Down
3 changes: 3 additions & 0 deletions .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -31,6 +31,9 @@ jobs:
runs-on: ubuntu-latest
needs: setup
steps:
- name: Checkout Code
uses: actions/checkout@v4

- uses: ./.github/actions/setup-job

- name: Unit Tests
Expand Down
3 changes: 3 additions & 0 deletions .github/workflows/e2e.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,9 @@ jobs:
timeout-minutes: 30
runs-on: ubuntu-latest
steps:
- name: Checkout Code
uses: actions/checkout@v4

- uses: ./.github/actions/setup-job

- name: Install Playwright Browsers
Expand Down

0 comments on commit 10581b4

Please sign in to comment.