Skip to content

Commit

Permalink
chore: disable the e2e tests since v37 is no longer supported
Browse files Browse the repository at this point in the history
  • Loading branch information
jenniferarnesen committed Oct 16, 2023
1 parent 92412bc commit e0812b2
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions .github/workflows/verify.yml
Original file line number Diff line number Diff line change
Expand Up @@ -104,10 +104,11 @@ jobs:
- name: Test
run: yarn test

# v37 is no longer supported, so do not run e2e tests
e2e:
runs-on: ubuntu-latest
needs: install
if: "!contains(github.event.head_commit.message, '[skip ci]')"
if: false

strategy:
matrix:
Expand Down Expand Up @@ -156,7 +157,7 @@ jobs:

publish:
runs-on: ubuntu-latest
needs: [build, lint, test, e2e]
needs: [build, lint, test]
if: "!contains(github.event.head_commit.message, '[skip ci]')"
steps:
- uses: actions/checkout@v2
Expand Down

0 comments on commit e0812b2

Please sign in to comment.