Skip to content

Commit

Permalink
fix: install deps for e2e tests in ci (#570)
Browse files Browse the repository at this point in the history
* fix: install deps for e2e tests in ci

* fix: add flags

* log env vars

* add branch to trigger e2e

* fix log

* fix log

* fix log

* fix log

* fix log

* add verbose flag to e2e

* fix flags for e2e

* add output style to nx commants

* use logging static for e2e

* remove log env vars step

* remove branch e2e trigger

* Update package.json

Co-authored-by: Sai Tirumerla <57160285+tirumerla@users.noreply.github.com>

* Update package.json

Co-authored-by: Sai Tirumerla <57160285+tirumerla@users.noreply.github.com>

* Update package.json

Co-authored-by: Sai Tirumerla <57160285+tirumerla@users.noreply.github.com>

* Update package.json

Co-authored-by: Sai Tirumerla <57160285+tirumerla@users.noreply.github.com>

* Update package.json

Co-authored-by: Sai Tirumerla <57160285+tirumerla@users.noreply.github.com>

---------

Co-authored-by: Sai Tirumerla <57160285+tirumerla@users.noreply.github.com>
  • Loading branch information
MCarlomagno and tirumerla authored Sep 27, 2024
1 parent 60d73b9 commit 0984c90
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -36,16 +36,16 @@
"ci:version": "pnpm changeset version",
"ci:snapshot": "pnpm changeset version --snapshot rc-snapshot",
"sort:networks": "node hack/sortNetworks.js && prettier -u -w packages/base/src/utils/network*.ts",
"build": "nx run-many -t build --parallel=1",
"build-test": "nx run-many -t style,build,test --projects=@openzeppelin/defender-base-client,* --parallel=false",
"build": "nx run-many -t build --parallel=1 --output-style=static",
"build-test": "nx run-many -t style,build,test --projects=@openzeppelin/defender-base-client,* --parallel=false --output-style=static",
"lint:check": "eslint 'packages/**/src/**/*.{js,ts}' --quiet",
"lint:fix": "pnpm prettier:fix && pnpm lint:check && pnpm prettier:check",
"prettier:check": "prettier -u --check '**/*.{js,ts,tsx,md}' '!**/.nx/**'",
"prettier:fix": "prettier -u --write '**/*.{js,ts,tsx,md}' '!**/.nx/**'",
"test": "nx run-many -t test --exclude=e2e --parallel=1",
"test:e2e": "nx run e2e:test",
"build:changed": "nx affected:build --base=origin/main --skip-nx-cache --parallel=1",
"test:changed": "nx affected:test --base=origin/main --skip-nx-cache --parallel=1",
"test": "nx run-many -t test --exclude=e2e --parallel=1 --output-style=static",
"test:e2e": "nx run e2e:test --output-style=static",
"build:changed": "nx affected:build --base=origin/main --skip-nx-cache --parallel=1 --output-style=static",
"test:changed": "nx affected:test --base=origin/main --skip-nx-cache --parallel=1 --output-style=static",
"style": "pnpm lint:fix",
"skip-lib-ignore": "./hack/skip-lib-ignore.sh",
"release": "node ./scripts/release.js",
Expand Down

0 comments on commit 0984c90

Please sign in to comment.