Skip to content

Commit

Permalink
chore: disable the e2e tests since v37 is no longer supported [v37] (#…
Browse files Browse the repository at this point in the history
…2792)

* chore: disable the e2e tests since v37 is no longer supported
  • Loading branch information
jenniferarnesen authored Oct 24, 2023
1 parent 92412bc commit dce095c
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 set the if condition to false to skip this job
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 dce095c

Please sign in to comment.