Skip to content

Commit

Permalink
ci: only run e2e tests on Ubuntu for now PE-6165
Browse files Browse the repository at this point in the history
They're currently broken in the Mac OS runner and I don't want this to
hold up the release.
  • Loading branch information
djwhitt committed Jun 5, 2024
1 parent 0e726a8 commit 7191b7b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/build-core.yml
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ jobs:
- run: yarn test:ci
# Run E2E tests if pushing to develop branch
- run: yarn test:e2e
if: github.ref == 'refs/heads/develop'
if: github.ref == 'refs/heads/develop' && matrix.os == 'ubuntu-latest'

# Codecov report
- name: Upload coverage reports to Codecov
Expand Down

0 comments on commit 7191b7b

Please sign in to comment.