diff --git a/.github/ISSUE_TEMPLATE/plugin-request.yaml b/.github/ISSUE_TEMPLATE/plugin-request.yaml index fc6ec0193..608c7b70d 100644 --- a/.github/ISSUE_TEMPLATE/plugin-request.yaml +++ b/.github/ISSUE_TEMPLATE/plugin-request.yaml @@ -37,7 +37,7 @@ body: placeholder: | For example: - [ ] All packages have a comprehensive documentation in place. - - [ ] All unit, integration and e2e tests for the plugin. + - [ ] All unit, integration and E2E tests for the plugin. - [ ] Cross references to relevant models or files are added as links. validations: required: true diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index d3f35f72d..43be434cb 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -120,7 +120,7 @@ jobs: - name: Install dependencies run: npm ci - name: E2E test affected projects - run: npx nx affected -t nxv-e2e --parallel=1 + run: npx nx affected -t e2e-test --parallel=1 build: runs-on: ubuntu-latest diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md index e26b3b9fa..e8c8e23a5 100644 --- a/CONTRIBUTING.md +++ b/CONTRIBUTING.md @@ -48,7 +48,7 @@ npx nx run-many -t unit-test npx nx run-many -t int-test # run E2E tests for CLI -npx nx e2e cli-e2e +npx nx e2e-test cli-e2e # build CLI along with packages it depends on npx nx build cli diff --git a/nx.json b/nx.json index 9efa6382c..251b8f366 100644 --- a/nx.json +++ b/nx.json @@ -91,7 +91,10 @@ "options": { "environments": { "environmentsDir": "tmp/e2e", - "targetNames": ["e2e"] + "targetNames": ["e2e"], + "inferredTargets": { + "e2e": "e2e-test" + } }, "packages": { "filterByTags": ["publishable"] diff --git a/package-lock.json b/package-lock.json index 8092299c5..5a2575d73 100644 --- a/package-lock.json +++ b/package-lock.json @@ -51,7 +51,7 @@ "@nx/react": "19.8.13", "@nx/vite": "19.8.13", "@nx/workspace": "19.8.13", - "@push-based/nx-verdaccio": "0.0.0-alpha.30", + "@push-based/nx-verdaccio": "^0.0.0", "@swc-node/register": "1.9.2", "@swc/cli": "0.3.14", "@swc/core": "1.5.7", @@ -5671,10 +5671,11 @@ } }, "node_modules/@push-based/nx-verdaccio": { - "version": "0.0.0-alpha.30", - "resolved": "https://registry.npmjs.org/@push-based/nx-verdaccio/-/nx-verdaccio-0.0.0-alpha.30.tgz", - "integrity": "sha512-PB/WpfcqmyypyXkWKJBVinIgvOgYJV3ckXdQXKBHJuEKyUnfiUObmgnGqmlQqCgFlv5tvPkNGEFXDPTGL9JyGw==", + "version": "0.0.0", + "resolved": "https://registry.npmjs.org/@push-based/nx-verdaccio/-/nx-verdaccio-0.0.0.tgz", + "integrity": "sha512-uQTjzSnnRKGqViegKcE42a/Rn1OQnsbEeG/xgoRIu+9SwNBItLvWMigSXGfbU6IgIYb3TUzbD7w7V18TAwwXmA==", "dev": true, + "license": "MIT", "dependencies": { "@nx/devkit": "19.8.0", "@nx/vite": "19.8.0", diff --git a/package.json b/package.json index 207cc8267..4d85151ca 100644 --- a/package.json +++ b/package.json @@ -64,7 +64,7 @@ "@nx/react": "19.8.13", "@nx/vite": "19.8.13", "@nx/workspace": "19.8.13", - "@push-based/nx-verdaccio": "0.0.0-alpha.30", + "@push-based/nx-verdaccio": "^0.0.0", "@swc-node/register": "1.9.2", "@swc/cli": "0.3.14", "@swc/core": "1.5.7",