Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix: remove npm project from e2e and get rid of unnecessary code on e2e testing #652

Merged
merged 1 commit into from
Mar 5, 2025
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 0 additions & 1 deletion .eslintignore
Original file line number Diff line number Diff line change
@@ -1,5 +1,4 @@
coverage
node_modules
scripts
e2e
/_temp
6 changes: 3 additions & 3 deletions .github/workflows/E2E.yml
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ jobs:
run: solhint --version

- name: Run E2E Tests
run: cd e2e && npm install && npm test
run: npm run ci:e2e

e2e_windows:
runs-on: windows-latest
Expand Down Expand Up @@ -83,7 +83,7 @@ jobs:
run: npm run lint

- name: Run E2E Tests
run: cd e2e && npm install && npm test
run: npm run ci:e2e

e2e_macos:
runs-on: macos-latest
Expand All @@ -109,4 +109,4 @@ jobs:
run: npm run lint

- name: Run Tests
run: cd e2e && npm install && npm test
run: npm run ci:e2e
Loading
Loading