Skip to content

Commit

Permalink
checkout code in each job
Browse files Browse the repository at this point in the history
  • Loading branch information
jdhoffa committed Aug 9, 2024
1 parent 1d07095 commit ceed10e
Showing 1 changed file with 8 additions and 0 deletions.
8 changes: 8 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -30,6 +30,8 @@ jobs:
needs: setup
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v3
- name: Run Unit Tests
run: npm run test:unit

Expand All @@ -38,6 +40,8 @@ jobs:
needs: setup
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v3
- name: Download Browser
run: npx playwright install
- name: Run Integration Tests
Expand All @@ -48,6 +52,8 @@ jobs:
needs: setup
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v3
- name: Run Linting
run: npm run lint

Expand All @@ -56,5 +62,7 @@ jobs:
needs: setup
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v3
- name: Run Type Checking
run: npm run check

0 comments on commit ceed10e

Please sign in to comment.