Skip to content

Commit

Permalink
chore(workflows) remove dependencies between jobs in workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
joshzcold committed Feb 6, 2025
1 parent 65e3b4b commit e31f26c
Showing 1 changed file with 0 additions and 4 deletions.
4 changes: 0 additions & 4 deletions .github/workflows/e2e-tests.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -10,8 +10,6 @@ jobs:
lint:
name: Lint Check
runs-on: ubuntu-latest
needs: [check-comment]
if: ${{ github.event_name == 'workflow_dispatch' || needs.check-comment.outputs.should_run == 'true' }}
steps:
- uses: actions/checkout@v4
- name: Set up Node.js
Expand All @@ -26,8 +24,6 @@ jobs:

test:
name: E2E Tests
needs: [lint, check-comment]
if: ${{ github.event_name == 'workflow_dispatch' || needs.check-comment.outputs.should_run == 'true' }}
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
Expand Down

0 comments on commit e31f26c

Please sign in to comment.