Skip to content
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
2 changes: 1 addition & 1 deletion .github/ISSUE_TEMPLATE/plugin-request.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion CONTRIBUTING.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
5 changes: 4 additions & 1 deletion nx.json
Original file line number Diff line number Diff line change
Expand Up @@ -91,7 +91,10 @@
"options": {
"environments": {
"environmentsDir": "tmp/e2e",
"targetNames": ["e2e"]
"targetNames": ["e2e"],
"inferredTargets": {
"e2e": "e2e-test"
}
},
"packages": {
"filterByTags": ["publishable"]
Expand Down
9 changes: 5 additions & 4 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -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",
Expand Down
Loading